Rogue: Savage Rats, a retro-themed dungeon crawler
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package mightypork.rogue;
|
|
|
|
|
|
|
|
|
|
|
|
import mightypork.gamecore.core.Config.ConfigSetup;
|
|
|
|
import mightypork.utils.files.config.PropertyManager;
|
|
|
|
|
|
|
|
|
|
|
|
public class RogueConfig implements ConfigSetup {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void addOptions(PropertyManager prop)
|
|
|
|
{
|
|
|
|
prop.putBoolean("display.fullscreen", false, "Start in fullscreen (remembers state at exit)");
|
|
|
|
prop.putInteger("display.width", 1024, "Initial width (remembers from last time)");
|
|
|
|
prop.putInteger("display.height", 768, "Initial height (remembers from last time)");
|
|
|
|
|
|
|
|
prop.putBoolean("opt.show_story", true, "Show story on start-up.");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|