summaryrefslogtreecommitdiffstats
path: root/desktop/src/ch/asynk/rustanddust
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 /desktop/src/ch/asynk/rustanddust
parent4d97565d96d973c067df4fe207e6a89cc733171a (diff)
downloadRustAndDust-9a2bec1e5bbd7095f8de1c7c1357c6faeecbb454.zip
RustAndDust-9a2bec1e5bbd7095f8de1c7c1357c6faeecbb454.tar.gz
rename tankontank directories into rustanddust
Diffstat (limited to 'desktop/src/ch/asynk/rustanddust')
-rw-r--r--desktop/src/ch/asynk/rustanddust/desktop/DesktopLauncher.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/desktop/src/ch/asynk/rustanddust/desktop/DesktopLauncher.java b/desktop/src/ch/asynk/rustanddust/desktop/DesktopLauncher.java
new file mode 100644
index 0000000..61f2fbc
--- /dev/null
+++ b/desktop/src/ch/asynk/rustanddust/desktop/DesktopLauncher.java
@@ -0,0 +1,18 @@
+package ch.asynk.rustanddust.desktop;
+
+import com.badlogic.gdx.backends.lwjgl.LwjglApplication;
+import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration;
+import com.badlogic.gdx.Files;
+import ch.asynk.rustanddust.RustAndDust;
+
+public class DesktopLauncher {
+ public static void main (String[] arg) {
+ LwjglApplicationConfiguration config = new LwjglApplicationConfiguration();
+ config.title = "Dust And Rust";
+ config.width = 1024;
+ config.height = 768;
+ // config.fullscreen = true;
+ config.addIcon("data/icon.png", Files.FileType.Internal);
+ new LwjglApplication(new RustAndDust(), config);
+ }
+}