mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-04-11 00:30:19 +02:00
12 lines
205 B
JavaScript
12 lines
205 B
JavaScript
export const GAME_STATE = {
|
|
SETUP: "setup",
|
|
PLACEMENT: "placement",
|
|
PLAYING: "playing",
|
|
FINISHED: "finished"
|
|
};
|
|
|
|
export const ZONE_TYPES = {
|
|
CIRCLE: "circle",
|
|
POLYGON: "polygon"
|
|
};
|