mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-13 21:30:09 +00:00
71b1191947
add command-line args for PhysX (numCores=..., solver=tgs, )
21 lines
302 B
C
21 lines
302 B
C
#ifndef PHYSX_C_API_H
|
|
#define PHYSX_C_API_H
|
|
|
|
#ifdef BT_ENABLE_PHYSX
|
|
|
|
#include "../PhysicsClientC_API.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
B3_SHARED_API b3PhysicsClientHandle b3ConnectPhysX(int argc, char* argv[]);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //BT_ENABLE_PHYSX
|
|
#endif //PHYSX_C_API_H
|