summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/tankontank/game/Config.java
blob: 1200f27d015e5d5d07cc7595d4e28c75b121c88f (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
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 float fxVolume;

    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;
        this.fxVolume = 1f;
    }
}