Settings.java (452B)
1 package nl.isygameclient.settings; 2 3 import nl.isygameclient.Window; 4 5 import java.util.HashMap; 6 import 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 */ 15 public class Settings { 16 public Map<Window, StageSettings> stages = new HashMap<>(); 17 18 public boolean darkMode = true; 19 public boolean tournamentMode = false; 20 }