13 lines
147 B
C
13 lines
147 B
C
#ifndef GAME_H
|
|
#define GAME_H
|
|
|
|
// Public
|
|
void start_game();
|
|
void toggle_pause();
|
|
|
|
extern bool paused;
|
|
|
|
// Private
|
|
static void game_loop();
|
|
|
|
#endif
|