12 lines
154 B
C++
12 lines
154 B
C++
#ifndef OUR_DICK_GAME_STATE_HPP
|
|
#define OUR_DICK_GAME_STATE_HPP
|
|
|
|
#define TILE_COUNT 9
|
|
|
|
struct game_state {
|
|
int turn;
|
|
char board[TILE_COUNT];
|
|
};
|
|
|
|
#endif
|