GameManager.h 242 B

12345678910111213
  1. #include <vector>
  2. class Cell;
  3. class GameManager{
  4. private:
  5. std::vector< std::vector< Cell* > > game_table_;
  6. int col_table_size_, row_table_size_;
  7. void generate_table_();
  8. void print_all();
  9. public:
  10. GameManager(int, int);
  11. };