11 lines
132 B
Go
11 lines
132 B
Go
package util
|
|
|
|
type Status int
|
|
|
|
const (
|
|
INITIALIZED Status = iota
|
|
WINNED Status = iota
|
|
FAILED Status = iota
|
|
DRAW Status = iota
|
|
)
|