blob: 254a1e9ec1f2921bfe7a3a40866a470234282d35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _SQUARE
#define _SQUARE
#include "types.h"
Color square_get_color(Square);
Piece* square_get_piece(Square);
Square square_set_color(Square, Color);
Square square_set_piece(Square, Piece*);
#endif
|