예제 #1
0
파일: game.go 프로젝트: chuckha/tic-tac-go
// Winner tells us who won.
func (g *Game) Winner() int {
	return tictactoe.Winner(g.ttt)
}
예제 #2
0
파일: game.go 프로젝트: chuckha/tic-tac-go
// InProgress tells us if a Game is currently underway or if the game is over
func (g *Game) InProgress() bool {
	return tictactoe.Winner(g.ttt) == 0
}