tome_lib/util.go

19 lines
201 B
Go
Raw Normal View History

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