Advertisement
Guest User

Untitled

a guest
Apr 7th, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #ifndef CONNECT4PLAYERAI_HPP
  2. #define CONNECT4PLAYERAI_HPP
  3.  
  4. enum PlayerType;
  5.  
  6. #include "Connect4Player.hpp"
  7.  
  8. class Connect4PlayerAi : public Connect4Player
  9. {
  10. public:
  11. Connect4PlayerAi(PlayerType _pt, char _ch);
  12. private:
  13. int makeTurn();
  14. };
  15.  
  16. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement