mirror of
https://github.com/bloeys/physx-go.git
synced 2025-12-29 07:58:20 +00:00
20 lines
256 B
C
Executable File
20 lines
256 B
C
Executable File
#ifndef CPxMaterial_H
|
|
#define CPxMaterial_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct CPxMaterial
|
|
{
|
|
void* obj;
|
|
};
|
|
|
|
CPxAPI void CPxMaterial_release(CSTRUCT CPxMaterial*);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !CPxMaterial_H
|