mirror of
https://github.com/bloeys/physx-go.git
synced 2025-12-29 07:58:20 +00:00
27 lines
459 B
C
Executable File
27 lines
459 B
C
Executable File
#ifndef CPxScene_H
|
|
#define CPxScene_H
|
|
|
|
#include "CPxPvdSceneClient.h"
|
|
#include "CPxActor.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct CPxScene
|
|
{
|
|
void* obj;
|
|
};
|
|
|
|
CPxAPI CSTRUCT CPxPvdSceneClient* CPxScene_getScenePvdClient(CSTRUCT CPxScene*);
|
|
CPxAPI void CPxScene_addActor(CSTRUCT CPxScene*, CSTRUCT CPxActor* actor);
|
|
|
|
CPxAPI void CPxScene_release(CSTRUCT CPxScene*);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif // !CPxScene_H
|