mirror of
https://github.com/ArthurDanjou/WitchRush.git
synced 2026-01-14 20:19:32 +01:00
13 lines
152 B
Java
13 lines
152 B
Java
package net.berrygames.witchrush.game;
|
|
|
|
public enum GameState {
|
|
|
|
WAITING,
|
|
STARTING,
|
|
NOPVP,
|
|
PVP,
|
|
DEATH_MATCH,
|
|
FINISHING,
|
|
;
|
|
}
|