MisterEpic

Human.h

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