v0.3.1: implemented a new toolbar UI including more minimum resolution width, options for up to 4 quickslots, and ui flip support.

This commit is contained in:
Evan Debenham
2015-06-25 00:00:37 -04:00
committed by Evan Debenham
parent 107033eb62
commit 179935fb87
6 changed files with 149 additions and 87 deletions
@@ -319,6 +319,11 @@ public class ShatteredPixelDungeon extends Game {
public static void quickSlots( int value ){ Preferences.INSTANCE.put( Preferences.KEY_QUICKSLOTS, value ); }
public static int quickSlots(){ return Preferences.INSTANCE.getInt( Preferences.KEY_QUICKSLOTS, 1); }
public static void flippedUI( boolean value) {
Preferences.INSTANCE.put(Preferences.KEY_FLIPPEDUI, value ); }
public static boolean flippedUI(){ return Preferences.INSTANCE.getBoolean(Preferences.KEY_FLIPPEDUI, false); }
public static void intro( boolean value ) {
Preferences.INSTANCE.put( Preferences.KEY_INTRO, value );