mirror of
https://github.com/bloeys/physx-go.git
synced 2025-12-29 07:58:20 +00:00
19 lines
302 B
C
Executable File
19 lines
302 B
C
Executable File
#ifndef CPxTolerancesScale_H
|
|
#define CPxTolerancesScale_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct CPxTolerancesScale
|
|
{
|
|
CPxReal length, speed;
|
|
};
|
|
|
|
CPxAPI CSTRUCT CPxTolerancesScale NewCPxTolerancesScale(CPxReal length, CPxReal speed);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |