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