diff options
Diffstat (limited to 'include/systems/physics.hpp')
-rw-r--r-- | include/systems/physics.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
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 <entityx/entityx.h> + +class PhysicsSystem : public entityx::System<PhysicsSystem> { +public: + void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; +}; + +#endif // SYSTEM_PHYSICS_HPP_ |