23 lines
359 B
C
23 lines
359 B
C
#ifndef RAPIER_H
|
|
#define RAPIER_H
|
|
|
|
|
|
|
|
typedef struct RapierShape_t RapierShape_t;
|
|
|
|
typedef struct BallShape_t {
|
|
float m_fRadius;
|
|
} BallShape_t;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // __cplusplus
|
|
|
|
struct RapierShape_t *CRapierPhysics_CreateBall(struct BallShape_t ball);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif // __cplusplus
|
|
|
|
#endif /* RAPIER_H */
|