Added GUI with swift.

This commit is contained in:
Ticho Hidding
2025-09-17 17:17:21 +02:00
committed by lieght
parent 5fcb77fd92
commit e906e812fa
8 changed files with 451 additions and 4 deletions

View File

@@ -32,9 +32,6 @@ public class Main {
while (running) {
window.update();
renderer.clear();
do {
console.print();
} while (console.next());
shader.start();
renderer.render();
@@ -45,6 +42,11 @@ public class Main {
if (shader != null) shader.cleanup();
if (renderer != null) renderer.cleanup();
if (window != null) window.cleanup();
*/
//JFrameWindow window = new JFrameWindow();
GameSelectorWindow gameSelectorWindow = new GameSelectorWindow();
}
private static void registerEvents() {