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

27 lines
410 B
C
Executable File

#ifndef CPxBoxGeometry_H
#define CPxBoxGeometry_H
#ifdef __cplusplus
extern "C" {
#endif
struct CPxBoxGeometry
{
float hx, hy, hz;
};
CPxAPI CPxInline CSTRUCT CPxBoxGeometry NewCPxBoxGeometry(float hx, float hy, float hz)
{
CSTRUCT CPxBoxGeometry cbg;
cbg.hx = hx;
cbg.hy = hy;
cbg.hz = hz;
return cbg;
}
#ifdef __cplusplus
}
#endif
#endif // !CPxBoxGeometry_H