1
0

playerCard.h 425 B

1234567891011121314151617
  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. std::vector<std::vector <int>> selection;
  15. void newSelection();
  16. };
  17. #endif