olok.h 256 B

1234567891011121314
  1. #ifndef OLOK
  2. #define OLOK
  3. #include <vector>
  4. #include "qwixx.h"
  5. #include <string>
  6. class Olok
  7. {
  8. public:
  9. std::vector<std::vector<bool>> grid;
  10. Olok();
  11. void clear();
  12. int penaltyCount;
  13. };
  14. #endif