summaryrefslogtreecommitdiff
path: root/engine/src
diff options
context:
space:
mode:
Diffstat (limited to 'engine/src')
-rw-r--r--engine/src/Context.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/engine/src/Context.cpp b/engine/src/Context.cpp
new file mode 100644
index 0000000..eeec938
--- /dev/null
+++ b/engine/src/Context.cpp
@@ -0,0 +1,24 @@
+#include <kurator/engine/Context.h>
+
+#include <entt/entity/registry.hpp>
+#include <entt/signal/dispatcher.hpp>
+
+#include <kurator/engine/Clock.h>
+
+
+namespace kurator
+{
+namespace engine
+{
+
+
+Context::Context(entt::registry& registry_, entt::dispatcher& dispatcher_, Clock& clock_) :
+ registry {registry_},
+ dispatcher {dispatcher_},
+ clock {clock_}
+{
+}
+
+
+} // namespace engine
+} // namespace kurator