basic-game-framework/src/engine.h

22 lines
290 B
C

#ifndef _engine_h
#define _engine_h
#ifdef __cplusplus
extern "C" {
#endif
extern float delta_time();
/* TO BE DEFINED IN GAME */
extern void start_game();
extern void update_game();
extern void update_ui();
extern void game_exit();
#ifdef __cplusplus
}
#endif
#endif /* _engine_h */