mirror of
https://github.com/bloeys/physx-go.git
synced 2025-12-29 07:58:20 +00:00
21 lines
471 B
C
Executable File
21 lines
471 B
C
Executable File
#ifndef CPxRigidActorExt_H
|
|
#define CPxRigidActorExt_H
|
|
|
|
#include "CPxRigidActor.h"
|
|
#include "CPxShape.h"
|
|
#include "CPxGeometry.h"
|
|
#include "CPxMaterial.h"
|
|
#include "CPxShapeFlags.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
CPxAPI CSTRUCT CPxShape createExclusiveShape(CSTRUCT CPxRigidActor actor, CSTRUCT CPxGeometry geometry, CSTRUCT CPxMaterial* material, CENUM CPxShapeFlags shapeFlags);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !CPxRigidActorExt_H
|