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