blob: 811255ff35b8332c404825a2caf830f703aa472c (
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
26
27
28
29
|
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 regularPawns;
public boolean debug;
public Battle battle;
public float fxVolume;
public Config()
{
this.debug = false;
this.showMoves = true;
this.showTargets = true;
this.showMoveAssists = true;
this.canCancel = false;
this.mustValidate = false;
this.showEnemyPossibilities = false;
this.regularPawns = true;
this.battle = null;
this.fxVolume = 1f;
}
}
|