DEADSOFTWARE

Update version
[cavedroid.git] / core / src / ru / deadsoftware / cavecraft / CaveGame.java
index 65d332c0054e26aec32968b9fede49913be17990..99e4f689c11bccede1c6702cb9d6e789a0080e5f 100644 (file)
@@ -4,14 +4,19 @@ import com.badlogic.gdx.Game;
 
 public class CaveGame extends Game {
 
+       public static final String VERSION = "alpha 0.2";
+
+       public static GameState STATE;
+
        public static boolean TOUCH;
 
        public CaveGame() {
-               this(true);
+               this(false);
        }
 
        public CaveGame(boolean touch) {
                TOUCH = touch;
+               STATE = GameState.GAME_PLAY;
        }
 
        @Override