ScoreSheet.h 425 B

1234567891011121314151617
  1. #ifndef SCORESHEET
  2. #define SCORESHEET
  3. #include <vector>
  4. #include "qwixx.h"
  5. #include <string>
  6. class ScoreSheet {
  7. public:
  8. std::vector<std::vector<bool>> rowColors;
  9. int penaltyCount;
  10. ScoreSheet(std::string);
  11. std::string savedName;
  12. bool isTurnDone;
  13. int score;
  14. std::vector<std::vector <int>> selection;
  15. void newSelection();
  16. };
  17. #endif