コード例 #1
0
ファイル: EnemyManager.java プロジェクト: Dephon/mothership
 public void update(Vector2f loc, int dt) {
   for (Entity alien : entities) {
     if (!alien.isDead()) {
       alien.update(loc, dt);
     }
   }
   if (spawnsEnabled) updateSpawns(dt);
 }
コード例 #2
0
ファイル: EnemyManager.java プロジェクト: Dephon/mothership
 @Override
 public void update(int dt) {
   for (Entity alien : entities) {
     if (!alien.isDead()) {
       alien.update(dt);
     } else {
       remove(alien);
     }
   }
   if (spawnsEnabled) updateSpawns(dt);
 }