diff options
Diffstat (limited to 'src/interfaces/window.hpp')
-rw-r--r-- | src/interfaces/window.hpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/interfaces/window.hpp b/src/interfaces/window.hpp new file mode 100644 index 0000000..5da9aff --- /dev/null +++ b/src/interfaces/window.hpp @@ -0,0 +1,9 @@ +#pragma once + +#include "engine/data/bounds.hpp" + +class IWindow +{ +public: + [[nodiscard]] virtual Bounds size() const noexcept = 0; +}; |