aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-03-27 20:22:52 +0200
committerHampusM <hampus@hampusmat.com>2022-06-13 17:56:57 +0200
commitea8cc60dc4af9b88d13f4a143986a3fad7e1691a (patch)
treeccb622de7c03aef041916b1bd451d10939fbf861 /src/interfaces
parent3b326d77dceb3cc70abd54943689d76ecd96fc8b (diff)
refactor: clean up DI code
Diffstat (limited to 'src/interfaces')
-rw-r--r--src/interfaces/engine.hpp3
-rw-r--r--src/interfaces/window.hpp3
2 files changed, 6 insertions, 0 deletions
diff --git a/src/interfaces/engine.hpp b/src/interfaces/engine.hpp
index 6830340..72d8f81 100644
--- a/src/interfaces/engine.hpp
+++ b/src/interfaces/engine.hpp
@@ -2,8 +2,11 @@
#include <unordered_map>
+// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions)
class ICLIGameEngine
{
public:
+ virtual ~ICLIGameEngine() noexcept = default;
+
virtual void start() noexcept = 0;
};
diff --git a/src/interfaces/window.hpp b/src/interfaces/window.hpp
index 5da9aff..d880762 100644
--- a/src/interfaces/window.hpp
+++ b/src/interfaces/window.hpp
@@ -2,8 +2,11 @@
#include "engine/data/bounds.hpp"
+// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions)
class IWindow
{
public:
+ virtual ~IWindow() noexcept = default;
+
[[nodiscard]] virtual Bounds size() const noexcept = 0;
};