#ifndef ENEMY_H #define ENEMY_H class Enemy { public: Enemy(); bool Alive() const { return false; } }; #endif