Skip to content
Snippets Groups Projects

Resolve "Create RoundInfo-page"

Closed Sixten Müller requested to merge 11-create-roundinfo-page into main
2 files
+ 16
10
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -47,7 +47,7 @@ public class MainMenuController {
@@ -47,7 +47,7 @@ public class MainMenuController {
// Button checks
// Button checks
if (joinGameButtonBounds.contains(touchPos.x, touchPos.y)) {
if (joinGameButtonBounds.contains(touchPos.x, touchPos.y)) {
System.out.println("Join Game Button Pressed");
System.out.println("Join Game Button Pressed");
state.getStateManager().setState(new RoundInfoState(state.getStateManager()));
state.getStateManager().setState(new JoinGameState(state.getStateManager()));
}
}
if (newGameButtonBounds.contains(touchPos.x, touchPos.y)) {
if (newGameButtonBounds.contains(touchPos.x, touchPos.y)) {
Loading