mirror of
https://github.com/bloeys/physx-go.git
synced 2025-12-29 07:58:20 +00:00
20 lines
312 B
C
Executable File
20 lines
312 B
C
Executable File
#ifndef __CPxPvd_H__
|
|
#define __CPxPvd_H__
|
|
|
|
#include "CPxFoundation.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
struct CPxPvd
|
|
{
|
|
void* obj;
|
|
};
|
|
|
|
CPxAPI CSTRUCT CPxPvd* CPxCreatePvd(CSTRUCT CPxFoundation*);
|
|
CPxAPI void CPxPvd_release(CSTRUCT CPxPvd* cpp);
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |