Files
physx-go/pgo/physx-c/CPxFoundation.h
2022-01-16 04:08:38 +04:00

18 lines
309 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