diff options
| author | ilotterytea <iltsu@alright.party> | 2025-02-01 15:23:29 +0500 |
|---|---|---|
| committer | ilotterytea <iltsu@alright.party> | 2025-02-01 15:23:29 +0500 |
| commit | 3dc3dfc1e4836e45022dd882b645664b1a2ceb4a (patch) | |
| tree | 607592e6088aec4cccf239d7194482a0a139855e /src/floor.hpp | |
| parent | 98bb51185eb053d56052ad9feb3420c258dbb601 (diff) | |
feat: floor (wip)
Diffstat (limited to 'src/floor.hpp')
| -rw-r--r-- | src/floor.hpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/floor.hpp b/src/floor.hpp new file mode 100644 index 0000000..6389dff --- /dev/null +++ b/src/floor.hpp @@ -0,0 +1,15 @@ +#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; + }; +}
\ No newline at end of file |
