From 316df0931c66e43e69f21bda28c77b9bdb1e8bca Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 13 Jun 2017 21:01:08 -0400 Subject: component reorginization; entity flashes --- include/systems/physics.hpp | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 include/systems/physics.hpp (limited to 'include/systems/physics.hpp') diff --git a/include/systems/physics.hpp b/include/systems/physics.hpp new file mode 100644 index 0000000..9fd6981 --- /dev/null +++ b/include/systems/physics.hpp @@ -0,0 +1,11 @@ +#ifndef SYSTEM_PHYSICS_HPP_ +#define SYSTEM_PHYSICS_HPP_ + +#include + +class PhysicsSystem : public entityx::System { +public: + void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; +}; + +#endif // SYSTEM_PHYSICS_HPP_ -- cgit v1.2.3