1
0
mirror of https://github.com/maaslalani/gambit.git synced 2024-12-28 21:08:58 +02:00
gambit/board/board.go
2022-01-31 08:29:18 -05:00

14 lines
126 B
Go

package board
const (
Cols = 8
Rows = 8
)
const (
FirstCol = 0
FirstRow = 0
LastCol = Cols - 1
LastRow = Rows - 1
)