mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-16 22:50:04 +00:00
29aa9cb789
add preliminary support to import btMultiBody from a .bullet file (will help save/restore state) fix some Windows char/widechar issues
21 lines
531 B
C++
21 lines
531 B
C++
#ifndef BT_MULTIBODY_WORLD_IMPORTER_H
|
|
#define BT_MULTIBODY_WORLD_IMPORTER_H
|
|
|
|
#include "../Extras/Serialize/BulletWorldImporter/btBulletWorldImporter.h"
|
|
|
|
class btMultiBodyWorldImporter : public btBulletWorldImporter
|
|
{
|
|
struct btMultiBodyWorldImporterInternalData* m_data;
|
|
|
|
public:
|
|
|
|
btMultiBodyWorldImporter(class btMultiBodyDynamicsWorld* world);
|
|
virtual ~btMultiBodyWorldImporter();
|
|
|
|
virtual bool convertAllObjects( bParse::btBulletFile* bulletFile2);
|
|
|
|
virtual void deleteAllData();
|
|
};
|
|
|
|
#endif //BT_MULTIBODY_WORLD_IMPORTER_H
|