mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 13:50:04 +00:00
10 lines
171 B
C
10 lines
171 B
C
#ifndef PHYSX_USER_DATA_H
|
|
#define PHYSX_USER_DATA_H
|
|
|
|
struct MyPhysXUserData
|
|
{
|
|
int m_graphicsUniqueId;
|
|
int m_bodyUniqueId;
|
|
int m_linkIndex;
|
|
};
|
|
#endif //PHYSX_USER_DATA_H
|