10 lines
189 B
Go
10 lines
189 B
Go
|
package main
|
||
|
|
||
|
// GameState is a numerical representation of a game state.
|
||
|
type GameState = uint8
|
||
|
|
||
|
// Our various game states.
|
||
|
const (
|
||
|
PlayerTurnState GameState = iota
|
||
|
NPCTurnState
|
||
|
)
|