tome_lib/util.go

30 lines
330 B
Go

package tome_lib
type GameStatus int
type TargetStatus int
const (
StatusLobby = iota
StatusReady
StatusPlaying
StatusStop
StatusSentinalWin
StatusScourgeWin
StatusDraw
)
const (
TargetSelf = iota
TargetOwn
TargetOwnEmpty
TargetOpp
TargetOppEmpty
TargetAny
TargetNone
)
const (
SentinalID = 1
ScourgeID = 2
)