mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 02:10:18 +01:00
12 lines
201 B
JavaScript
12 lines
201 B
JavaScript
export const GameState = {
|
|
SETUP: "setup",
|
|
PLACEMENT: "placement",
|
|
PLAYING: "playing",
|
|
FINISHED: "finished"
|
|
}
|
|
|
|
export const ZoneTypes = {
|
|
CIRCLE: "circle",
|
|
POLYGON: "polygon"
|
|
}
|