mirror of
https://git.rezel.net/LudoTech/traque.git
synced 2026-02-09 10:20:16 +01:00
20 lines
335 B
JavaScript
20 lines
335 B
JavaScript
export const Colors = {
|
|
black: "#000000",
|
|
grey: "#808080",
|
|
green: "#19e119",
|
|
red: "#e11919",
|
|
orange: "#fa6400"
|
|
}
|
|
|
|
export const GameState = {
|
|
SETUP: "setup",
|
|
PLACEMENT: "placement",
|
|
PLAYING: "playing",
|
|
FINISHED: "finished"
|
|
}
|
|
|
|
export const ZoneTypes = {
|
|
CIRCLE: "circle",
|
|
POLYGON: "polygon"
|
|
}
|