#pragma once #include #include class Castle { private: const size_t x, y; const std::vector image; const std::vector mask; public: Castle(); void draw() const; };