Commit dc8a1958 authored by 15김민규's avatar 15김민규

enemy branch 시작. 목표는 적 소환 구현 후 UI에 연결.

parent ac70cdfd
...@@ -105,7 +105,7 @@ public class EnemyManager : Singleton<EnemyManager> ...@@ -105,7 +105,7 @@ public class EnemyManager : Singleton<EnemyManager>
float[] enemyData = { 0.0f }; float[] enemyData = { 0.0f };
int.TryParse(cellValue[0], out enemyID); int.TryParse(cellValue[0], out enemyID);
for(int i=0;i<11;i++) for(int i = 0;i<11;i++)
{ {
float.TryParse(cellValue[i + 2], out enemyData[i]); float.TryParse(cellValue[i + 2], out enemyData[i]);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment