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