our_dick/include/game_state.hpp

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