diff options
Diffstat (limited to 'include/types.h')
-rw-r--r-- | include/types.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/types.h b/include/types.h new file mode 100644 index 0000000..7618916 --- /dev/null +++ b/include/types.h @@ -0,0 +1,21 @@ +#ifndef _TYPES +#define _TYPES + +#define SIZE 8 + +typedef enum {WHITE, BLACK} Color; +typedef enum {PAWN, ROCK, KNIGHT, BISHOP, QUEEN, KING} PieceType; + +typedef struct { + Color color; + PieceType type; +} Piece; + +typedef struct { + Color color; + Piece* piece; +} Square; + +typedef Square** Board; + +#endif |