playerCard.h 208 B

12345678910
  1. #include <vector>
  2. #include "qwixx.h"
  3. #include <string>
  4. class PlayerCard {
  5. public:
  6. std::vector<std::vector<bool>> rows;
  7. int penaltyCount;
  8. PlayerCard(std::string);
  9. std::string savedName;
  10. };