Files
bullet3/Demos3/ImportURDFDemo/ImportURDFSetup.h

24 lines
503 B
C++

#ifndef IMPORT_URDF_SETUP_H
#define IMPORT_URDF_SETUP_H
#include "Bullet3AppSupport/CommonMultiBodySetup.h"
class ImportUrdfSetup : public CommonMultiBodySetup
{
char m_fileName[1024];
struct ImportUrdfInternalData* m_data;
public:
ImportUrdfSetup();
virtual ~ImportUrdfSetup();
virtual void initPhysics(GraphicsPhysicsBridge& gfxBridge);
virtual void stepSimulation(float deltaTime);
void setFileName(const char* urdfFileName);
};
#endif //IMPORT_URDF_SETUP_H