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

14 lines
126 B
Go
Raw Normal View History

2021-12-24 22:57:54 +02:00
package board
2022-01-31 15:29:18 +02:00
const (
Cols = 8
Rows = 8
)
2021-12-24 22:57:54 +02:00
const (
FirstCol = 0
FirstRow = 0
2022-01-31 15:29:18 +02:00
LastCol = Cols - 1
LastRow = Rows - 1
2021-12-24 22:57:54 +02:00
)