mirror of
https://github.com/maaslalani/gambit.git
synced 2024-12-28 21:08:58 +02:00
14 lines
126 B
Go
14 lines
126 B
Go
package board
|
|
|
|
const (
|
|
Cols = 8
|
|
Rows = 8
|
|
)
|
|
|
|
const (
|
|
FirstCol = 0
|
|
FirstRow = 0
|
|
LastCol = Cols - 1
|
|
LastRow = Rows - 1
|
|
)
|