17 lines
397 B
C
17 lines
397 B
C
#ifndef CONSTAINT_PHYSICS_SETUP_H
|
|
#define CONSTAINT_PHYSICS_SETUP_H
|
|
|
|
#include "../CommonRigidBodySetup.h"
|
|
|
|
struct ConstraintPhysicsSetup : public CommonRigidBodySetup
|
|
{
|
|
ConstraintPhysicsSetup();
|
|
virtual ~ConstraintPhysicsSetup();
|
|
virtual void initPhysics(GraphicsPhysicsBridge& gfxBridge);
|
|
|
|
virtual void stepSimulation(float deltaTime);
|
|
|
|
};
|
|
|
|
#endif //CONSTAINT_PHYSICS_SETUP_H
|