summaryrefslogtreecommitdiff
path: root/engine/src/Context.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engine/src/Context.cpp')
-rw-r--r--engine/src/Context.cpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/engine/src/Context.cpp b/engine/src/Context.cpp
deleted file mode 100644
index 8c81c89..0000000
--- a/engine/src/Context.cpp
+++ /dev/null
@@ -1,45 +0,0 @@
-#include <kurator/engine/Context.h>
-
-#include <entt/entity/registry.hpp>
-#include <entt/signal/dispatcher.hpp>
-
-#include <kurator/engine/Camera.h>
-#include <kurator/engine/Clock.h>
-
-
-namespace kurator
-{
-namespace engine
-{
-
-
-Context::Context(entt::registry& registry_, entt::dispatcher& dispatcher_, Clock& clock_, Camera& camera_) :
- registry {registry_},
- dispatcher {dispatcher_},
- clock {clock_},
- camera {camera_}
-{
-}
-
-
-Context::operator ConstContext() const
-{
- return ConstContext{registry, dispatcher, clock, camera};
-}
-
-
-ConstContext::ConstContext(
- const entt::registry& registry_,
- const entt::dispatcher& dispatcher_,
- const Clock& clock_,
- const Camera& camera_) :
- registry {registry_},
- dispatcher {dispatcher_},
- clock {clock_},
- camera {camera_}
-{
-}
-
-
-} // namespace engine
-} // namespace kurator