Brick Game v1.0
Implementation of the game Tetris in the C programming language with a terminal user interface.
Loading...
Searching...
No Matches
saving.h
Go to the documentation of this file.
1
3
4#ifndef BRICK_GAME_V1_0_BRICK_GAME_TETRIS_GAME_SAVING_H_
5#define BRICK_GAME_V1_0_BRICK_GAME_TETRIS_GAME_SAVING_H_
6
10int load_top_score(void);
11
13void save_top_score(int top_score);
14
15#endif
int load_top_score(void)
Load top score from a file on disk.
Definition saving.c:11
void save_top_score(int top_score)
Save the top score to a file on disk.
Definition saving.c:26