1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-11-23 21:34:47 +02:00
Files
go_basics/part_3/tic_tac_toe/game/game_state.go

13 lines
159 B
Go
Raw Normal View History

package game
type GameState int
// состояние игрового процесса
const (
playing GameState = iota
draw
crossWin
noughtWin
quit
)