#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(); private: // Nothing yet! }; #endif