2023-04-06 13:20:08 +00:00
|
|
|
#ifndef _engine_h
|
|
|
|
#define _engine_h
|
|
|
|
|
2023-05-05 21:26:30 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern float delta_time();
|
|
|
|
|
2023-04-06 13:20:08 +00:00
|
|
|
/* TO BE DEFINED IN GAME */
|
2023-04-11 06:10:46 +00:00
|
|
|
|
2023-04-06 13:20:08 +00:00
|
|
|
extern void start_game();
|
|
|
|
extern void update_game();
|
2023-04-10 14:54:05 +00:00
|
|
|
extern void update_ui();
|
2023-05-11 17:49:58 +00:00
|
|
|
extern void game_exit();
|
2023-04-06 13:20:08 +00:00
|
|
|
|
2023-05-05 21:26:30 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-04-06 13:20:08 +00:00
|
|
|
#endif /* _engine_h */
|