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