summaryrefslogtreecommitdiffstats
path: root/html/src/ch/asynk/rustanddust/client
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2015-08-08 17:35:29 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2015-08-08 17:35:29 +0200
commit9a2bec1e5bbd7095f8de1c7c1357c6faeecbb454 (patch)
treed7568830019b78357ecc7be36318c5376537d9b3 /html/src/ch/asynk/rustanddust/client
parent4d97565d96d973c067df4fe207e6a89cc733171a (diff)
downloadRustAndDust-9a2bec1e5bbd7095f8de1c7c1357c6faeecbb454.zip
RustAndDust-9a2bec1e5bbd7095f8de1c7c1357c6faeecbb454.tar.gz
rename tankontank directories into rustanddust
Diffstat (limited to 'html/src/ch/asynk/rustanddust/client')
-rw-r--r--html/src/ch/asynk/rustanddust/client/HtmlLauncher.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/html/src/ch/asynk/rustanddust/client/HtmlLauncher.java b/html/src/ch/asynk/rustanddust/client/HtmlLauncher.java
new file mode 100644
index 0000000..a0e7ea0
--- /dev/null
+++ b/html/src/ch/asynk/rustanddust/client/HtmlLauncher.java
@@ -0,0 +1,19 @@
+package ch.asynk.rustanddust.client;
+
+import com.badlogic.gdx.ApplicationListener;
+import com.badlogic.gdx.backends.gwt.GwtApplication;
+import com.badlogic.gdx.backends.gwt.GwtApplicationConfiguration;
+import ch.asynk.rustanddust.RustAndDust;
+
+public class HtmlLauncher extends GwtApplication {
+
+ @Override
+ public GwtApplicationConfiguration getConfig () {
+ return new GwtApplicationConfiguration(480, 320);
+ }
+
+ @Override
+ public ApplicationListener getApplicationListener () {
+ return new RustAndDust();
+ }
+} \ No newline at end of file