Files
worms/OGP1718-Worms/src-provided/worms/internal/gui/GUIOptions.java
Koen Yskout d5cbb646ed Release v3.0
2018-04-17 13:54:17 +02:00

36 lines
863 B
Java
Executable File

package worms.internal.gui;
public class GUIOptions {
/**
* Disable full screen mode
* Default: false
*
* Full screen can also be disabled from the command line by providing the -window argument
*/
public boolean disableFullScreen = false;
/**
* Random seed for the game
* Default: 3
*
* Can also be set from the command line with the -seed argument
*/
public long randomSeed = 3;
/**
* Enable quick worm selection by clicking the mouse
* Default: false
*
* Can also be enabled from the command line with the -clickselect argument
*/
public boolean enableClickToSelect = false;
/**
* The program that is executed by computer-controlled worms.
* Default: "programs/program.txt"
*
* Can also be set from the command line with the -program argument
*/
public String programFile = "programs/program.txt";
}