Files
physx-go/pgo/physx-c/CPxFoundation.h
2022-01-17 04:36:56 +04:00

18 lines
301 B
C
Executable File

#ifndef CPxFoundation_H
#define CPxFoundation_H
#ifdef __cplusplus
extern "C" {
#endif
struct CPxFoundation
{
void* obj;
};
CPxAPI CSTRUCT CPxFoundation* CPxCreateFoundation();
CPxAPI void CPxFoundation_release(CSTRUCT CPxFoundation* cpf);
#ifdef __cplusplus
}
#endif
#endif