Files
physx-go/pgo/physx-c/CPxPlane.h
2022-01-20 04:46:38 +04:00

22 lines
395 B
C
Executable File

#ifndef CPxPlane_H
#define CPxPlane_H
#ifdef __cplusplus
extern "C" {
#endif
//TODO: Maybe convert this into a value type like CPxSphereGeometry?
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