Init of physX Alhamdullah!

This commit is contained in:
bloeys
2022-01-16 01:30:28 +04:00
parent 8cac421ab0
commit a93e9fd7d1
5 changed files with 49 additions and 0 deletions

18
pgo/physx-c/CPxFoundation.h Executable file
View File

@ -0,0 +1,18 @@
#ifndef __CPxFoundation_H__
#define __CPxFoundation_H__
#ifdef __cplusplus
extern "C" {
#endif
struct CPxFoundation
{
void* obj;
};
CPxAPI CSTRUCT CPxFoundation* NewCPxFoundation();
CPxAPI void FreeCPxFoundation(CSTRUCT CPxFoundation* cpf);
#ifdef __cplusplus
}
#endif
#endif