Guest User

Player.hpp

a guest
Dec 8th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #ifndef PLAYER_HPP
  2. #define PLAYER_HPP
  3.  
  4. namespace Alice
  5. {
  6.     class Player : public Entity
  7.     {
  8.         public:
  9.             Player() : Entity() {};
  10.             Player(std::string filePath) :  Entity(filePath) {};
  11.             void UserEvent(void);
  12.     };
  13. }
  14.  
  15. #endif //!PLAYER_HPP
Advertisement
Add Comment
Please, Sign In to add comment