diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-07 18:17:51 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-07 18:17:51 -0500 |
commit | 08708d80209d0b2cebc8f5f849a9b66e34202d6f (patch) | |
tree | dae3bcdfcb8d1a83642b59c0c15760e3d3565062 /src/engine.cpp | |
parent | bd80053588a9a38c9f7a1f132d36fb0844b91af4 (diff) |
attacks?
Diffstat (limited to 'src/engine.cpp')
-rw-r--r-- | src/engine.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/engine.cpp b/src/engine.cpp index ee35d06..640356e 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -11,6 +11,7 @@ #include <quest.hpp> #include <particle.hpp> #include <weather.hpp> +#include <attack.hpp> Engine::Engine(void) : shouldRun(true), systems(game::entities, game::events) @@ -35,6 +36,7 @@ void Engine::init(void) { systems.add<ParticleSystem>(); systems.add<WeatherSystem>(); + systems.add<AttackSystem>(); systems.configure(); @@ -54,6 +56,7 @@ void Engine::update(entityx::TimeDelta dt) //systems.update<QuestSystem>(dt); // doesn't do anything systems.update<WeatherSystem>(dt); systems.update<ParticleSystem>(dt); + systems.update<AttackSystem>(dt); } |