package cc.maxmc.blastingcrisis.game
enum class GameState {
WAITING,
COUNTING_DOWN,
START,
WALL_FALL,
FINISH;
fun isStarted(): Boolean = this == START || this == WALL_FALL
}