#ifndef ENEMY_HPP #define ENEMY_HPP #include "Entity.hpp" class Enemy : public Entity { public: Enemy(); ~Enemy(); void doThink(int delta); private: Entity *target; }; #endif