15 lines
132 B
C
15 lines
132 B
C
|
#ifndef GAME_H
|
||
|
#define GAME_H
|
||
|
|
||
|
|
||
|
#include "../game_api.h"
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
void game_tick(void);
|
||
|
void game_end(void);
|
||
|
|
||
|
|
||
|
#endif
|