blob: 0e733af643de0807ba38236db21e55d92ed9e1e8 (
plain)
1
2
3
4
5
6
|
export const GAME_STATE_CONNECTING = 'connecting';
export const GAME_STATE_WAITING = 'waiting';
export const GAME_STATE_STARTING = 'starting';
export const GAME_STATE_GAMING = 'gaming';
export const GAME_STATE_FINISHED = 'finished';
export const GAME_STATE_FAILED = 'failed';
|