summary refs log tree commit diff stats
path: root/src/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game.cpp b/src/game.cpp index f245e7c..3da23a3 100644 --- a/src/game.cpp +++ b/src/game.cpp
@@ -10,6 +10,7 @@
10#include "systems/mapping.h" 10#include "systems/mapping.h"
11#include "systems/orienting.h" 11#include "systems/orienting.h"
12#include "systems/playing.h" 12#include "systems/playing.h"
13#include "systems/scheduling.h"
13#include "animation.h" 14#include "animation.h"
14#include "consts.h" 15#include "consts.h"
15 16
@@ -30,6 +31,7 @@ void key_callback(GLFWwindow* window, int key, int, int action, int)
30Game::Game() : world_("res/maps.xml") 31Game::Game() : world_("res/maps.xml")
31{ 32{
32 systemManager_.emplaceSystem<PlayingSystem>(*this); 33 systemManager_.emplaceSystem<PlayingSystem>(*this);
34 systemManager_.emplaceSystem<SchedulingSystem>(*this);
33 systemManager_.emplaceSystem<ControllingSystem>(*this); 35 systemManager_.emplaceSystem<ControllingSystem>(*this);
34 systemManager_.emplaceSystem<OrientingSystem>(*this); 36 systemManager_.emplaceSystem<OrientingSystem>(*this);
35 systemManager_.emplaceSystem<PonderingSystem>(*this); 37 systemManager_.emplaceSystem<PonderingSystem>(*this);