v0.3.1: better settings menu, landscape/portrait can now be changed from ingame.

This commit is contained in:
Evan Debenham
2015-07-19 20:04:10 -04:00
committed by Evan Debenham
parent 2cdebfe164
commit f8a99c6533
5 changed files with 237 additions and 290 deletions
@@ -51,19 +51,13 @@ public class WndGame extends Window {
super();
addButtons( new RedButton( "Display" ) {
addButton(new RedButton("Settings") {
@Override
protected void onClick() {
hide();
GameScene.show( new WndDisplay() );
GameScene.show(new WndSettings());
}
}, new RedButton( "Audio" ) {
@Override
protected void onClick() {
hide();
GameScene.show( new WndAudio( ) );
}
} );
});
// Challenges window
if (Dungeon.challenges > 0) {