aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine.cpp')
-rw-r--r--src/engine.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/engine.cpp b/src/engine.cpp
index 7c9a404..e5b2b36 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -7,6 +7,7 @@
#include <inventory.hpp>
#include <components.hpp>
#include <player.hpp>
+#include <quest.hpp>
Engine::Engine(void)
: shouldRun(true), systems(game::entities, game::events)
@@ -23,6 +24,7 @@ void Engine::init(void) {
//systems.add<InventorySystem>();
systems.add<WorldSystem>();
systems.add<PlayerSystem>();
+ systems.add<QuestSystem>();
systems.add<PhysicsSystem>();
systems.add<MovementSystem>();
@@ -39,7 +41,7 @@ void Engine::render(entityx::TimeDelta dt)
{
systems.update<RenderSystem>(dt);
systems.update<WindowSystem>(dt);
- //systems.update<InventorySystem>(dt);
+ //systems.update<InventorySystem>(dt); // doesn't do anything...
ui::fadeUpdate();
}
@@ -48,9 +50,10 @@ void Engine::update(entityx::TimeDelta dt)
{
systems.update<InputSystem>(dt);
systems.update<MovementSystem>(dt);
- systems.update<DialogSystem>(dt);
+ //systems.update<DialogSystem>(dt); // doesn't do anything
systems.update<WorldSystem>(dt);
systems.update<PlayerSystem>(dt);
+ //systems.update<QuestSystem>(dt); // doesn't do anything
}