19 lines
215 B
C
19 lines
215 B
C
#ifndef GAME_H
|
|
#define GAME_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
uint8_t game_init(void);
|
|
void game_shutdown(void);
|
|
void game_tick(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* GAME_H */
|