diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-06-13 21:01:08 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-06-13 21:01:08 -0400 |
commit | 316df0931c66e43e69f21bda28c77b9bdb1e8bca (patch) | |
tree | d98231e4b41d046a2a60ee9c6f1cc724a9e3837d /src/systems/physics.cpp | |
parent | 11b8e727e04ed6095164bb826541409f88047625 (diff) |
component reorginization; entity flashes
Diffstat (limited to 'src/systems/physics.cpp')
-rw-r--r-- | src/systems/physics.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/systems/physics.cpp b/src/systems/physics.cpp new file mode 100644 index 0000000..4cee110 --- /dev/null +++ b/src/systems/physics.cpp @@ -0,0 +1,15 @@ +#include <systems/physics.hpp> + +#include <components/direction.hpp> +#include <components/physics.hpp> + +void PhysicsSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) +{ + (void)ev; + en.each<Direction, Physics>([dt](entityx::Entity entity, Direction &direction, Physics &physics) { + (void)entity; + // TODO GET GRAVITY FROM WORLD + direction.y += physics.g * dt; + }); +} + |