aboutsummaryrefslogtreecommitdiff
path: root/src/engine/graphics/window.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/graphics/window.hpp')
-rw-r--r--src/engine/graphics/window.hpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/engine/graphics/window.hpp b/src/engine/graphics/window.hpp
new file mode 100644
index 0000000..c9a9c70
--- /dev/null
+++ b/src/engine/graphics/window.hpp
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "DI/auto_wirable.hpp"
+#include "interfaces/window.hpp"
+
+#include "engine/data/bounds.hpp"
+
+class Window : public IWindow, public AutoWirable<IWindow, Window>
+{
+public:
+ Window() noexcept = default;
+
+ [[nodiscard]] Bounds size() const noexcept override;
+};