hanze/game-client

src/main/java/nl/isygameclient/settings/Settings.java in main
Repositories | Summary | Log | Files

Settings.java (452B) download


 1package nl.isygameclient.settings;
 2
 3import nl.isygameclient.Window;
 4
 5import java.util.HashMap;
 6import java.util.Map;
 7
 8
 9/**
10 * This Class holds default settings for the application.
11 * It also provides the format of the settings that are saved to a file.
12 *
13 * @author A F Koens
14 */
15public class Settings {
16    public Map<Window, StageSettings> stages = new HashMap<>();
17
18    public boolean darkMode = true;
19    public boolean tournamentMode = false;
20}