Archived
1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
game_of_life/include/game.h
2024-09-11 22:48:22 +05:00

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