PvdSceneClient

This commit is contained in:
bloeys
2022-01-17 19:37:00 +04:00
parent 6fe8f6eba1
commit c3c74b46a4
11 changed files with 161 additions and 1 deletions

20
pgo/physx-c/CPxPlane.h Executable file
View File

@ -0,0 +1,20 @@
#ifndef CPxPlane_H
#define CPxPlane_H
#ifdef __cplusplus
extern "C" {
#endif
struct CPxPlane
{
void* obj;
};
CPxAPI CSTRUCT CPxPlane* NewCPxPlane(float nx, float ny, float nz, float distance);
CPxAPI void CPxPlane_release(CSTRUCT CPxPlane*);
#ifdef __cplusplus
}
#endif
#endif // !CPxPlane_H