add missing file
This commit is contained in:
24
Demos3/bullet2/RagdollDemo/RagdollDemo.h
Normal file
24
Demos3/bullet2/RagdollDemo/RagdollDemo.h
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
#ifndef RAGDOLL_DEMO_H
|
||||||
|
#define RAGDOLL_DEMO_H
|
||||||
|
|
||||||
|
|
||||||
|
#include "../BasicDemo/BasicDemo.h"
|
||||||
|
|
||||||
|
class RagDollDemo : public BasicDemo
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
RagDollDemo(SimpleOpenGL3App* app);
|
||||||
|
virtual ~RagDollDemo();
|
||||||
|
|
||||||
|
static BulletDemoInterface* MyCreateFunc(SimpleOpenGL3App* app)
|
||||||
|
{
|
||||||
|
return new RagDollDemo(app);
|
||||||
|
}
|
||||||
|
|
||||||
|
void initPhysics();
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif //RAGDOLL_DEMO_H
|
||||||
|
|
||||||
Reference in New Issue
Block a user