diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/src/ch/asynk/tankontank/game/GameCtrl.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/src/ch/asynk/tankontank/game/GameCtrl.java b/core/src/ch/asynk/tankontank/game/GameCtrl.java index bcec97f..e18b99d 100644 --- a/core/src/ch/asynk/tankontank/game/GameCtrl.java +++ b/core/src/ch/asynk/tankontank/game/GameCtrl.java @@ -19,14 +19,16 @@ public class GameCtrl implements Disposable public boolean showMoveAssists; public boolean canCancel; public boolean mustValidate; + public boolean showEnemyPossibilities; public Config() { this.showMoves = true; this.showTargets = true; this.showMoveAssists = true; - this.mustValidate = false; this.canCancel = true; + this.mustValidate = false; + this.showEnemyPossibilities = false; // TODO } } |