mirror of
https://github.com/bloeys/physx-go.git
synced 2025-12-29 07:58:20 +00:00
19 lines
307 B
C
Executable File
19 lines
307 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);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !CPxBoxGeometry_H
|