#ifndef SCORESHEET #define SCORESHEET #include #include "qwixx.h" #include #include "olok.h" class ScoreSheet { public: Olok cumulativeOlok; Olok currentTurnOlok; ScoreSheet(std::string name, int secret); std::string savedName; bool isTurnDone; int score; int secretNumber; }; #endif