Settings.java (805B) download
1package nl.isygameclient.models.settings;
2
3import java.util.ArrayList;
4import java.util.Arrays;
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<String, StageSettings> stages = new HashMap<>();
17
18 public boolean tournamentMode = false;
19
20 public ArrayList<GameCard> gameCards = new ArrayList<>(Arrays.asList(
21 new GameCard("TicTacToe", "views/games/tictactoe/TicTacToeMainMenu.fxml", "images/tictactoe_logo.png"),
22 new GameCard("Othello", "views/games/othello/OthelloSinglePlayer.fxml", "images/othello_logo.png"),
23 new GameCard("Starvation", null, null))
24 );
25}