summaryrefslogtreecommitdiffstats
path: root/core/src/ch
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2014-10-10 15:32:58 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2014-10-10 15:32:58 +0200
commitc7cdb725e1710c64ff7c18d0cd8f964d3234809a (patch)
tree184bcb2ebec9cfef691e77b0d4b85678a51ad3d2 /core/src/ch
parentd62eccc5d9f72a851378c4bce96602bb6deed30d (diff)
downloadRustAndDust-c7cdb725e1710c64ff7c18d0cd8f964d3234809a.zip
RustAndDust-c7cdb725e1710c64ff7c18d0cd8f964d3234809a.tar.gz
GameCtrl.Config: add showEnemyPossibilities
Diffstat (limited to 'core/src/ch')
-rw-r--r--core/src/ch/asynk/tankontank/game/GameCtrl.java4
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
}
}