blob: eeec93823ae28596a0cfae5e7096ddbd02939b7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
|