ScoreSheet.h 398 B

123456789101112131415161718
  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 name, int secret);
  13. std::string savedName;
  14. bool isTurnDone;
  15. int score;
  16. int secretNumber;
  17. };
  18. #endif