blob: c562b5033e527788e97743f7cc56d6dc240d3c1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
package ch.asynk.tankontank.game;
public class Config
{
public boolean showMoves;
public boolean showTargets;
public boolean showMoveAssists;
public boolean canCancel;
public boolean mustValidate;
public boolean showEnemyPossibilities;
public boolean debug;
public Battle battle;
public Config()
{
this.debug = false;
this.showMoves = true;
this.showTargets = true;
this.showMoveAssists = true;
this.canCancel = true;
this.mustValidate = false;
this.showEnemyPossibilities = false;
this.battle = null;
}
}
|