diff options
Diffstat (limited to 'src/engine/graphics/window.hpp')
-rw-r--r-- | src/engine/graphics/window.hpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/engine/graphics/window.hpp b/src/engine/graphics/window.hpp deleted file mode 100644 index 9284e5e..0000000 --- a/src/engine/graphics/window.hpp +++ /dev/null @@ -1,15 +0,0 @@ -#pragma once - -#include "interfaces/window.hpp" - -#include "engine/data/bounds.hpp" - -#include <yacppdic/auto_wirable.hpp> - -class Window : public IWindow, public yacppdic::AutoWirable<IWindow, Window> -{ -public: - Window() noexcept = default; - - [[nodiscard]] auto size() const noexcept -> Bounds override; -}; |