#ifndef MONSTER_H #define MONSTER_H #include "Creature.h" class Monster : public Creature { public: Monster(); // Kill the monster, in the game sense void kill(); private: // Nothing yet! }; #endif