aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/window.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/window.hpp')
-rw-r--r--src/interfaces/window.hpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/interfaces/window.hpp b/src/interfaces/window.hpp
deleted file mode 100644
index 6fc56e9..0000000
--- a/src/interfaces/window.hpp
+++ /dev/null
@@ -1,12 +0,0 @@
-#pragma once
-
-#include "engine/data/bounds.hpp"
-
-// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions)
-class IWindow
-{
-public:
- virtual ~IWindow() noexcept = default;
-
- [[nodiscard]] virtual auto size() const noexcept -> Bounds = 0;
-};