aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/engine.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-03-10 19:12:31 +0100
committerHampusM <hampus@hampusmat.com>2022-06-13 17:56:55 +0200
commit38f14606c78c119d452f302f17329455e29a9a6f (patch)
tree03f6dfd9d3576e87260f7cb3bc436ad076b629c5 /src/interfaces/engine.hpp
parent09848ad31af6a1c70d64fccee711e231afb5a77f (diff)
refactor: rename game initializer & move input config
Diffstat (limited to 'src/interfaces/engine.hpp')
-rw-r--r--src/interfaces/engine.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/interfaces/engine.hpp b/src/interfaces/engine.hpp
new file mode 100644
index 0000000..498ff41
--- /dev/null
+++ b/src/interfaces/engine.hpp
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "interfaces/observable.hpp"
+
+#include <unordered_map>
+
+class ICLIGameEngine
+{
+public:
+ virtual void start() noexcept = 0;
+};