diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2015-08-08 17:35:29 +0200 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2015-08-08 17:35:29 +0200 | 
| commit | 9a2bec1e5bbd7095f8de1c7c1357c6faeecbb454 (patch) | |
| tree | d7568830019b78357ecc7be36318c5376537d9b3 /desktop/src/ch/asynk/rustanddust | |
| parent | 4d97565d96d973c067df4fe207e6a89cc733171a (diff) | |
| download | RustAndDust-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.java | 18 | 
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); +    } +} | 
