#pragma once #include "game_entity.h" class Building : public GameEntity { public: Building(int x, int y); const static char MISSILE_CONTROLLER_CHAR = 'M'; const static char ALIEN_FACTORY_CHAR = 'X'; };