diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2016-01-11 10:37:38 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2016-01-11 11:45:57 +0100 |
commit | 432fb6f91d186dd7dad12982d24aa66a4ae80ec0 (patch) | |
tree | 015163fd9b71898d0f659f4ed7f385f7c25841e5 /core/src/ch/asynk/rustanddust/game/battles | |
parent | 21af522854d1b10289e6c338be0663132afe5ba6 (diff) | |
download | RustAndDust-432fb6f91d186dd7dad12982d24aa66a4ae80ec0.zip RustAndDust-432fb6f91d186dd7dad12982d24aa66a4ae80ec0.tar.gz |
ArrayListIt -> IterableArray
Diffstat (limited to 'core/src/ch/asynk/rustanddust/game/battles')
-rw-r--r-- | core/src/ch/asynk/rustanddust/game/battles/BattleCommon.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/ch/asynk/rustanddust/game/battles/BattleCommon.java b/core/src/ch/asynk/rustanddust/game/battles/BattleCommon.java index 7b7904d..5023d5a 100644 --- a/core/src/ch/asynk/rustanddust/game/battles/BattleCommon.java +++ b/core/src/ch/asynk/rustanddust/game/battles/BattleCommon.java @@ -14,7 +14,7 @@ import ch.asynk.rustanddust.game.Unit.UnitId; import ch.asynk.rustanddust.game.Factory; import ch.asynk.rustanddust.game.State.StateType; import ch.asynk.rustanddust.engine.Orientation; -import ch.asynk.rustanddust.engine.util.ArrayListIt; +import ch.asynk.rustanddust.engine.util.IterableArray; public abstract class BattleCommon implements Battle { @@ -28,8 +28,8 @@ public abstract class BattleCommon implements Battle protected Player currentPlayer; protected Player usPlayer; protected Player gePlayer; - protected ArrayListIt<Zone> entryZone = new ArrayListIt<Zone>(); - protected ArrayListIt<Zone> exitZone = new ArrayListIt<Zone>(); + protected IterableArray<Zone> entryZone = new IterableArray<Zone>(); + protected IterableArray<Zone> exitZone = new IterableArray<Zone>(); protected HashMap<Unit, Zone> unitEntry = new HashMap<Unit, Zone>(); protected HashMap<Unit, Zone> unitExit = new HashMap<Unit, Zone>(); |