Update PauseScreen.java

master
PF94 2020-11-28 22:07:10 -05:00
parent 23a4aeed8a
commit 6d3540ecc0
1 changed files with 5 additions and 5 deletions

View File

@ -24,11 +24,11 @@ public class PauseScreen extends Screen
public void init() {
attemptSaveLevel();
System.out.println("Level saved? [PAUSE MENU]");
this.buttons.add(new Button(0, this.width / 2 - 100, this.height / 4 + 0, 200, 20, "Generate new level"));
//this.buttons.add(new Button(1, this.width / 2 - 100, this.height / 4 + 64, 200, 20, "Save level.."));
//this.buttons.add(new Button(2, this.width / 2 - 100, this.height / 4 + 96, 200, 20, "Load level.."));
this.buttons.add(new Button(3, this.width / 2 - 100, this.height / 4 + 32, 97, 20, "Back to game"));
this.buttons.add(new Button(4, this.width / 2 - 0, this.height / 4 + 32, 100, 20, "Exit"));
this.buttons.add(new Button(0, this.width / 2 - 100, this.height / 4 + 32, 200, 20, "Generate new level"));
//this.buttons.add(new Button(1, this.width / 2 - 100, this.height / 4 + 96, 200, 20, "Save level.."));
//this.buttons.add(new Button(2, this.width / 2 - 100, this.height / 4 + 128, 200, 20, "Load level.."));
this.buttons.add(new Button(3, this.width / 2 - 100, this.height / 4 + 64, 97, 20, "Back to game"));
this.buttons.add(new Button(4, this.width / 2 - 0, this.height / 4 + 64, 100, 20, "Exit"));
}
@Override