diff options
Diffstat (limited to 'lwjgl3/src/main')
| -rw-r--r-- | lwjgl3/src/main/java/kz/ilotterytea/frogartha/lwjgl3/Lwjgl3Launcher.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lwjgl3/src/main/java/kz/ilotterytea/frogartha/lwjgl3/Lwjgl3Launcher.java b/lwjgl3/src/main/java/kz/ilotterytea/frogartha/lwjgl3/Lwjgl3Launcher.java index 4767186..86a6985 100644 --- a/lwjgl3/src/main/java/kz/ilotterytea/frogartha/lwjgl3/Lwjgl3Launcher.java +++ b/lwjgl3/src/main/java/kz/ilotterytea/frogartha/lwjgl3/Lwjgl3Launcher.java @@ -2,6 +2,7 @@ package kz.ilotterytea.frogartha.lwjgl3; import com.badlogic.gdx.backends.lwjgl3.Lwjgl3Application; import com.badlogic.gdx.backends.lwjgl3.Lwjgl3ApplicationConfiguration; +import com.github.czyzby.websocket.CommonWebSockets; import kz.ilotterytea.frogartha.FrogarthaGame; /** @@ -10,6 +11,7 @@ import kz.ilotterytea.frogartha.FrogarthaGame; public class Lwjgl3Launcher { public static void main(String[] args) { if (StartupHelper.startNewJvmIfRequired()) return; // This handles macOS support and helps on Windows. + CommonWebSockets.initiate(); new Lwjgl3Application(FrogarthaGame.getInstance(), getDefaultConfiguration()); } |
