SNAKE_STM32F3
Loading...
Searching...
No Matches
game.h
Go to the documentation of this file.
1
11
12
13#ifndef INC_GAME_H_
14#define INC_GAME_H_
15
23void game_loop(void);
24
30void game_init(void);
31
39void game_start_request(int game_seed);
40
46void game_tick_request(void);
47
48#endif /* INC_GAME_H_ */
void game_loop(void)
Main game state machine function.
Definition game.c:41
void game_tick_request(void)
Requests one tick game progression (one snake move) in state machine.
Definition game.c:69
void game_start_request(int game_seed)
Requests start of the game in state machine.
Definition game.c:60
void game_init(void)
Main game init function.
Definition game.c:55