#ifndef PLAYER_H #define PLAYER_H #include "Creature.h" class Player : public Creature { public: Player(); void jump(); // Kill the player, in the game sense void kill(); // Enable or disable sprinting void setSprint(bool s); bool getSprint(); int getXVel(); private: bool sprint; }; #endif