MisterEpic

Computer.h

Apr 6th, 2012
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. #ifndef COMPUTER_H
  2. #define COMPUTER_H
  3.  
  4. #include "Paddle.h"
  5. #include "ComputerPaddle.h"
  6. #include "Player.h"
  7. #include "Ball.h"
  8.  
  9. #include <SFML/Graphics.hpp>
  10. #include <SFML/Audio.hpp>
  11.  
  12. class Computer : public Player
  13. {
  14.     public:
  15.         Computer(sf::RenderWindow * App, int idPlayer, Ball *ball);
  16.         ~Computer(){};
  17. };
  18.  
  19. #endif // COMPUTER_H
Advertisement
Add Comment
Please, Sign In to add comment