#pragma once namespace silly::editor { class Floor { public: Floor(int width, int height) : width(width), height(height) {} ~Floor() = default; const int get_width() const; const int get_height() const; private: int width, height; }; }