1234567891011121314151617 |
- #ifndef SCORESHEET
- #define SCORESHEET
- #include <vector>
- #include "qwixx.h"
- #include <string>
- class ScoreSheet {
- public:
- std::vector<std::vector<bool>> rowColors;
- int penaltyCount;
- ScoreSheet(std::string);
- std::string savedName;
- bool isTurnDone;
- int score;
- std::vector<std::vector <int>> selection;
- void newSelection();
- };
- #endif
|