mirror of
https://github.com/bulletphysics/bullet3.git
synced 2026-09-10 12:28:31 +00:00
24 lines
437 B
C
24 lines
437 B
C
|
|
#ifndef CCD_PHYSICS_SETUP_H
|
|
#define CCD_PHYSICS_SETUP_H
|
|
|
|
|
|
#include "Bullet3AppSupport/CommonRigidBodySetup.h"
|
|
|
|
struct CcdPhysicsSetup : public CommonRigidBodySetup
|
|
{
|
|
virtual void initPhysics(GraphicsPhysicsBridge& gfxBridge);
|
|
|
|
};
|
|
|
|
struct KinematicObjectSetup : public CommonRigidBodySetup
|
|
{
|
|
virtual void initPhysics(GraphicsPhysicsBridge& gfxBridge);
|
|
|
|
virtual void stepSimulation(float deltaTime);
|
|
|
|
};
|
|
|
|
|
|
#endif //CCD_PHYSICS_SETUP_H
|