#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(); void setCrouch(int c); int getCrouch(); void orient(); private: bool sprint; int crouch; }; #endif