1
1

ScoreSheet.h 355 B

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