basic-game-framework/src/engine.h

22 lines
290 B
C
Raw Normal View History

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();
extern void update_ui();
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 */