tome_lib/util.go

19 lines
201 B
Go
Raw Permalink Normal View History

2021-10-01 12:43:55 -04:00
package tome_lib
type GameStatus int
const (
StatusLobby = iota
StatusReady
StatusPlaying
StatusStop
StatusSentinalWin
StatusScourgeWin
StatusDraw
)
const (
SentinalID = 1
ScourgeID = 2
)