mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 22:00:05 +00:00
7bd84740d7
Split examples/SharedMemory/b3RobotSimulatorClientAPI_NoGUI.* and move to examples/SharedMemory/b3RobotSimulatorClientAPI_NoGUI.cpp and examples/SharedMemory/b3RobotSimulatorClientAPI_NoDirect.cpp
18 lines
447 B
C
18 lines
447 B
C
#ifndef B3_ROBOT_SIMULATOR_CLIENT_API_INTERNAL_DATA_H
|
|
#define B3_ROBOT_SIMULATOR_CLIENT_API_INTERNAL_DATA_H
|
|
|
|
#include "../SharedMemory/PhysicsClientC_API.h"
|
|
|
|
struct b3RobotSimulatorClientAPI_InternalData
|
|
{
|
|
b3PhysicsClientHandle m_physicsClientHandle;
|
|
struct GUIHelperInterface* m_guiHelper;
|
|
|
|
b3RobotSimulatorClientAPI_InternalData()
|
|
: m_physicsClientHandle(0),
|
|
m_guiHelper(0)
|
|
{
|
|
}
|
|
};
|
|
|
|
#endif //B3_ROBOT_SIMULATOR_CLIENT_API_INTERNAL_DATA_H
|