tictactoe.go
// Package tictactoe is a basic tictactoe game.
package tictactoe
// WinSize sets how many we need next to each other.
const WinSize = 3
// Runes for record types on the Board.
const (
Emp rune = '_'
P_1 rune = 'x'
P_2 rune = 'o'
)
// Board represents the board the game played on.
type Board [][]rune