Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef PLAYER_HPP
- #define PLAYER_HPP
- namespace Alice
- {
- class Player : public Entity
- {
- public:
- Player() : Entity() {};
- Player(std::string filePath) : Entity(filePath) {};
- void UserEvent(void);
- };
- }
- #endif //!PLAYER_HPP
Advertisement
Add Comment
Please, Sign In to add comment