Files
funnygame/public/physics_gen.h
2026-03-03 00:51:04 +02:00

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 */