Server heavy refactoring 4 (not functionnal)

This commit is contained in:
Sebastien Riviere
2026-03-12 23:17:21 +01:00
parent e1b6c0e0c5
commit 1389dce132
95 changed files with 5320 additions and 27986 deletions

View File

@@ -0,0 +1,22 @@
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"
};