mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-04-10 16:30:18 +02:00
23 lines
444 B
JavaScript
23 lines
444 B
JavaScript
export const GAME_STATE = {
|
|
SETUP: "setup",
|
|
PLACEMENT: "placement",
|
|
PLAYING: "playing",
|
|
FINISHED: "finished"
|
|
};
|
|
|
|
export const USER_STATE = {
|
|
LOADING: "loading",
|
|
NO_LOCATION: "no_location",
|
|
OFFLINE: "offline",
|
|
WAITING: "waiting",
|
|
PLACEMENT: "placement",
|
|
PLAYING: "playing",
|
|
CAPTURED: "captured",
|
|
FINISHED: "finished"
|
|
};
|
|
|
|
export const ZONE_TYPES = {
|
|
CIRCLE: "circle",
|
|
POLYGON: "polygon"
|
|
};
|