MisterEpic

HumanPaddle.h

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