1234567891011121314151617181920212223 |
- #ifndef GAME
- #define GAME
- #include "qwixx.h"
- #include "dice.h"
- #include "playerCard.h"
- #include <windows.h>
- class Game {
- public:
- std::vector<PlayerCard> players;
- std::vector<bool> lockOut;
- int state;
- Dice dice;
- Game();
- void turn(PlayerCard activePlayer);
- void score();
- std::string send();
- void receive(std::string userInput);
-
- bool addPlayer(std::string name);
-
-
- };
- #endif
|