diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2018-06-26 02:06:32 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2018-06-26 02:06:32 +0200 |
commit | ccbec710375ddab05e60d893851e57f7ee743d19 (patch) | |
tree | d22eb9f39093e4a15113b4f29ff7eaf8f4562cfb /desktop/src | |
download | gdx-boardgame-ccbec710375ddab05e60d893851e57f7ee743d19.zip gdx-boardgame-ccbec710375ddab05e60d893851e57f7ee743d19.tar.gz |
bare bone libgdx project
generated with https://libgdx.badlogicgames.com/nightlies/dist/gdx-setup.jar
Diffstat (limited to 'desktop/src')
-rw-r--r-- | desktop/src/ch/asynk/zproject/desktop/DesktopLauncher.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/desktop/src/ch/asynk/zproject/desktop/DesktopLauncher.java b/desktop/src/ch/asynk/zproject/desktop/DesktopLauncher.java new file mode 100644 index 0000000..c6a3885 --- /dev/null +++ b/desktop/src/ch/asynk/zproject/desktop/DesktopLauncher.java @@ -0,0 +1,12 @@ +package ch.asynk.zproject.desktop; + +import com.badlogic.gdx.backends.lwjgl.LwjglApplication; +import com.badlogic.gdx.backends.lwjgl.LwjglApplicationConfiguration; +import ch.asynk.zproject.ZProject; + +public class DesktopLauncher { + public static void main (String[] arg) { + LwjglApplicationConfiguration config = new LwjglApplicationConfiguration(); + new LwjglApplication(new ZProject(), config); + } +} |