#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_