Skip to content
Snippets Groups Projects

creates LobbyView from CreateGameView

Merged Thea Slemdal Bergersen requested to merge 8-create-lobby-page into main
7 files
+ 190
24
Compare changes
  • Side-by-side
  • Inline
Files
7
package com.wordbattle.game.controller;
import com.wordbattle.game.states.ConnectingLobbyState;
public class ConnectingLobbyController {
private ConnectingLobbyState state;
public ConnectingLobbyController(ConnectingLobbyState state) {
this.state = state;
}
public void update(float dt) {
// Logic for updating the connecting lobby state
// For example, checking if all players have joined or handling any networking tasks
}
public void dispose() {
// Clean up any resources when exiting the state
}
}
Loading