Added creating setting up a server for the user when the form is filled in

This commit is contained in:
lieght
2025-09-17 20:12:36 +02:00
parent 395dc8c603
commit 032d388f4f
4 changed files with 79 additions and 11 deletions

View File

@@ -18,6 +18,7 @@ public class Main {
public static void main(String[] args) throws ExecutionException, InterruptedException {
initSystems();
registerEvents();
/*
Window window = Window.setup(Window.API.GLFW, "Test", new Window.Size(1280, 720));
Renderer renderer = Renderer.setup(Renderer.API.OPENGL);
@@ -34,7 +35,9 @@ public class Main {
Window.start("");
*/
GameSelectorWindow gameSelectorWindow = new GameSelectorWindow();
new Thread(() -> {
GameSelectorWindow gameSelectorWindow = new GameSelectorWindow();
}).start();
}
/**