Files
physx-go/pgo/physx-c/CPxSphereGeometry.h
2022-02-18 03:39:11 +04:00

24 lines
383 B
C
Executable File

#ifndef CPxSphereGeometry_H
#define CPxSphereGeometry_H
#ifdef __cplusplus
extern "C" {
#endif
struct CPxSphereGeometry
{
CPxReal radius;
};
CPxAPI CPxInline CSTRUCT CPxSphereGeometry NewCPxSphereGeometry(CPxReal radius)
{
CSTRUCT CPxSphereGeometry c;
c.radius = radius;
return c;
}
#ifdef __cplusplus
}
#endif
#endif // !CPxSphereGeometry_H