diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-10-10 15:32:58 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2014-10-10 15:32:58 +0200 |
commit | c7cdb725e1710c64ff7c18d0cd8f964d3234809a (patch) | |
tree | 184bcb2ebec9cfef691e77b0d4b85678a51ad3d2 | |
parent | d62eccc5d9f72a851378c4bce96602bb6deed30d (diff) | |
download | RustAndDust-c7cdb725e1710c64ff7c18d0cd8f964d3234809a.zip RustAndDust-c7cdb725e1710c64ff7c18d0cd8f964d3234809a.tar.gz |
GameCtrl.Config: add showEnemyPossibilities
-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 } } |