diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2014-09-10 22:59:32 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2014-09-10 22:59:32 +0200 |
commit | 86e0e122a475dfd4f627fc95a9458e7527d72a00 (patch) | |
tree | 6c85c5b28d1f94cf146b16039f6df27aeeb484d3 /html/src/ch/asynk/tankontank/client/HtmlLauncher.java | |
download | RustAndDust-86e0e122a475dfd4f627fc95a9458e7527d72a00.zip RustAndDust-86e0e122a475dfd4f627fc95a9458e7527d72a00.tar.gz |
Initial commit
Diffstat (limited to 'html/src/ch/asynk/tankontank/client/HtmlLauncher.java')
-rw-r--r-- | html/src/ch/asynk/tankontank/client/HtmlLauncher.java | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/html/src/ch/asynk/tankontank/client/HtmlLauncher.java b/html/src/ch/asynk/tankontank/client/HtmlLauncher.java new file mode 100644 index 0000000..70b4814 --- /dev/null +++ b/html/src/ch/asynk/tankontank/client/HtmlLauncher.java @@ -0,0 +1,19 @@ +package ch.asynk.tankontank.client;
+
+import com.badlogic.gdx.ApplicationListener;
+import com.badlogic.gdx.backends.gwt.GwtApplication;
+import com.badlogic.gdx.backends.gwt.GwtApplicationConfiguration;
+import ch.asynk.tankontank.TankOnTank;
+
+public class HtmlLauncher extends GwtApplication {
+
+ @Override
+ public GwtApplicationConfiguration getConfig () {
+ return new GwtApplicationConfiguration(480, 320);
+ }
+
+ @Override
+ public ApplicationListener getApplicationListener () {
+ return new TankOnTank();
+ }
+}
\ No newline at end of file |