mirror of
https://github.com/bloeys/physx-go.git
synced 2025-12-29 07:58:20 +00:00
23 lines
282 B
C
Executable File
23 lines
282 B
C
Executable File
#ifndef CPxFilterData_H
|
|
#define CPxFilterData_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct CPxFilterData
|
|
{
|
|
CPxU32 word0;
|
|
CPxU32 word1;
|
|
CPxU32 word2;
|
|
CPxU32 word3;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !CPxFilterData_H
|