mirror of
https://github.com/bulletphysics/bullet3
synced 2025-01-05 15:21:06 +00:00
10 lines
342 B
C
10 lines
342 B
C
#ifndef LINK_VISUAL_SHAPES_CONVERTER_H
|
|
#define LINK_VISUAL_SHAPES_CONVERTER_H
|
|
|
|
struct LinkVisualShapesConverter
|
|
{
|
|
virtual void convertVisualShapes(int linkIndex, const char* pathPrefix, const class btTransform& localInertiaFrame, const struct UrdfModel& model, class btCollisionObject* colObj)=0;
|
|
};
|
|
|
|
#endif //LINK_VISUAL_SHAPES_CONVERTER_H
|