public class CaveGame extends Game {
+ public static final String VERSION = "alpha 0.1";
+
+ 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