blob: dbbf7bf93915e1b5a4b9426ba9e03380c80cd4ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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 Config()
{
this.debug = false;
this.showMoves = true;
this.showTargets = true;
this.showMoveAssists = true;
this.canCancel = true;
this.mustValidate = false;
this.showEnemyPossibilities = false;
}
}
|