|
@@ -0,0 +1,15 @@
|
|
|
|
|
+package me.lethunderhawk;
|
|
|
|
|
+
|
|
|
|
|
+import com.badlogic.gdx.ApplicationListener;
|
|
|
|
|
+import com.badlogic.gdx.Game;
|
|
|
|
|
+import com.badlogic.gdx.Gdx;
|
|
|
|
|
+import com.badlogic.gdx.InputAdapter;
|
|
|
|
|
+import me.lethunderhawk.screen.MenuScreen;
|
|
|
|
|
+
|
|
|
|
|
+/** {@link com.badlogic.gdx.ApplicationListener} implementation shared by all platforms. Listens to user input. */
|
|
|
|
|
+public class Main extends Game {
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public void create() {
|
|
|
|
|
+ setScreen(new MenuScreen(this));
|
|
|
|
|
+ }
|
|
|
|
|
+}
|