summaryrefslogtreecommitdiff
path: root/html/src/main/java/kz/ilotterytea/frogartha/gwt/GwtLauncher.java
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-01-21 03:17:15 +0500
committerilotterytea <iltsu@alright.party>2025-01-21 03:17:15 +0500
commit1ecd8d1d527b6b66b4746e44023b6ab3cb2ca4cc (patch)
tree44a766670059ef3beb1da048844fc7693418bcf8 /html/src/main/java/kz/ilotterytea/frogartha/gwt/GwtLauncher.java
parent4e524d08c5b427cabc1a6e452347c09c963eb86c (diff)
feat: using other serializer and gdx-websocket (because the old one doesn't support gwt)
Diffstat (limited to 'html/src/main/java/kz/ilotterytea/frogartha/gwt/GwtLauncher.java')
-rw-r--r--html/src/main/java/kz/ilotterytea/frogartha/gwt/GwtLauncher.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/html/src/main/java/kz/ilotterytea/frogartha/gwt/GwtLauncher.java b/html/src/main/java/kz/ilotterytea/frogartha/gwt/GwtLauncher.java
index a4e7ea3..bafa596 100644
--- a/html/src/main/java/kz/ilotterytea/frogartha/gwt/GwtLauncher.java
+++ b/html/src/main/java/kz/ilotterytea/frogartha/gwt/GwtLauncher.java
@@ -3,6 +3,7 @@ package kz.ilotterytea.frogartha.gwt;
import com.badlogic.gdx.ApplicationListener;
import com.badlogic.gdx.backends.gwt.GwtApplication;
import com.badlogic.gdx.backends.gwt.GwtApplicationConfiguration;
+import com.github.czyzby.websocket.GwtWebSockets;
import kz.ilotterytea.frogartha.FrogarthaGame;
/**
@@ -23,6 +24,7 @@ public class GwtLauncher extends GwtApplication {
@Override
public ApplicationListener createApplicationListener() {
+ GwtWebSockets.initiate();
return FrogarthaGame.getInstance();
}
}