#ifndef CQ4_GAME_H_ #define CQ4_GAME_H_ #include #include struct GameState { int n; int cp; int win; std::vector> B; std::vector C[2]; GameState(int n); std::string boardString() const; bool _checkEnd() const; bool move(int x, int y); void randomBoard(); }; #endif