improved the new demo testbed (work-in-progress) add basic Lua demo, import URDF test, STL import, obj import
15 lines
310 B
C++
15 lines
310 B
C++
#ifndef SERIALIZE_SETUP_H
|
|
#define SERIALIZE_SETUP_H
|
|
#include "../../Demos/CommonRigidBodySetup.h"
|
|
|
|
class SerializeSetup : public CommonRigidBodySetup
|
|
{
|
|
public:
|
|
SerializeSetup();
|
|
virtual ~SerializeSetup();
|
|
|
|
virtual void initPhysics(GraphicsPhysicsBridge& gfxBridge);
|
|
};
|
|
|
|
#endif //SERIALIZE_SETUP_H
|