mirror of
https://github.com/bloeys/physx-go.git
synced 2025-12-29 07:58:20 +00:00
21 lines
318 B
C
Executable File
21 lines
318 B
C
Executable File
#ifndef CPxRigidDynamic_H
|
|
#define CPxRigidDynamic_H
|
|
|
|
#include "CPxActor.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct CPxRigidDynamic
|
|
{
|
|
void* obj;
|
|
};
|
|
|
|
CPxAPI CSTRUCT CPxActor CPxRigidDynamic_toCPxActor(CSTRUCT CPxRigidDynamic*);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !CPxRigidDynamic_H
|