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