aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/scene.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-02-27 17:12:49 +0100
committerHampusM <hampus@hampusmat.com>2022-06-13 17:56:53 +0200
commitfe79577396231f2edb7927f1f61ce814f03851a7 (patch)
treed353a1caa449ec772dcf9a8681084fc2d6e64116 /src/interfaces/scene.hpp
parent6964d48c970e5f7b11897096c816271785af23ac (diff)
add basic engine graphics
Diffstat (limited to 'src/interfaces/scene.hpp')
-rw-r--r--src/interfaces/scene.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/interfaces/scene.hpp b/src/interfaces/scene.hpp
new file mode 100644
index 0000000..8b34dae
--- /dev/null
+++ b/src/interfaces/scene.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+#include "interfaces/matrix.hpp"
+
+#include <functional>
+#include <memory>
+#include <string_view>
+
+class IScene
+{
+public:
+ virtual void enter() = 0;
+
+ virtual void leave() = 0;
+};