playerCard.h 346 B

123456789101112131415
  1. #ifndef PLAYERCARD
  2. #define PLAYERCARD
  3. #include <vector>
  4. #include "qwixx.h"
  5. #include <string>
  6. class PlayerCard {
  7. public:
  8. std::vector<std::vector<bool>> rowColors;
  9. int penaltyCount;
  10. PlayerCard(std::string);
  11. std::string savedName;
  12. bool isTurnDone;
  13. int score;
  14. };
  15. #endif