mirror of
https://github.com/nishiowo/nishbox
synced 2025-04-21 20:24:39 +00:00
24 lines
379 B
C
24 lines
379 B
C
/**
|
|
* Physics
|
|
*/
|
|
|
|
#ifndef __GF_PHYSICS_H__
|
|
#define __GF_PHYSICS_H__
|
|
|
|
#include <gf_pre.h>
|
|
#include <gf_macro.h>
|
|
|
|
/* Type */
|
|
#include <gf_type/physics.h>
|
|
|
|
/* Engine */
|
|
|
|
/* Standard */
|
|
|
|
GF_EXPORT void gf_physics_begin(void);
|
|
GF_EXPORT void gf_physics_end(void);
|
|
GF_EXPORT gf_physics_t* gf_physics_create(void);
|
|
GF_EXPORT void gf_physics_destroy(gf_physics_t* physics);
|
|
|
|
#endif
|