2026-01-31 09:29:13 +09:00
|
|
|
#ifndef __GEARSRC_PHYSICS_H__
|
|
|
|
|
#define __GEARSRC_PHYSICS_H__
|
|
|
|
|
|
|
|
|
|
#include <GearSrc/MachDep.h>
|
|
|
|
|
#include <GearSrc/TypeDefs.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2026-02-01 00:22:34 +09:00
|
|
|
GSDECL void GSPhysicsInit(void);
|
|
|
|
|
GSDECL GSPhysics GSPhysicsCreate(GSServer server);
|
|
|
|
|
GSDECL void GSPhysicsDestroy(GSPhysics physics);
|
|
|
|
|
GSDECL void GSPhysicsStep(GSPhysics physics);
|
2026-01-31 09:29:13 +09:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|