blob: 9fd6981dab283e4a0a3ff06d04b87d9875bd0940 (
plain)
1
2
3
4
5
6
7
8
9
10
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_
|