more menus
Some checks failed
Linux arm64 / Build (push) Failing after 14m21s

This commit is contained in:
2025-01-23 15:50:10 +01:00
parent 7ab1173fb3
commit b05351bc20
6 changed files with 117 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
package gui.menu;
import imgui.ImGui;
public class CreateGameMenu extends BaseView {
public CreateGameMenu(StateMachine stateMachine) {
super(stateMachine);
}
@Override
public void render() {
ImGui.text("Créer");
renderReturnButton();
}
}