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