mirror of
https://github.com/maaslalani/gambit.git
synced 2025-01-28 03:29:43 +02:00
10 lines
218 B
Go
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
|
|
}
|