#pragma once class Alien { public: Alien(int x, int y); const static char MAP_CHAR = 'x'; private: int x; int y; };