1
0
mirror of https://github.com/maaslalani/gambit.git synced 2025-01-28 03:29:43 +02:00
gambit/board/board.go
2021-12-21 17:57:16 -05:00

10 lines
218 B
Go

package board
import "github.com/maaslalani/gambit/piece"
type Board struct {
// The board is represented as a 2D array of cells.
// The first index is the row, the second is the column.
grid [8][8]*piece.Piece
}