mirror of
https://github.com/bloeys/physx-go.git
synced 2025-12-29 07:58:20 +00:00
22 lines
395 B
C
Executable File
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
|