blob: b7c97c28fa6dd03a99394bba751d7d0d8a65c827 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
struct game
{
int click;
int multiplifier;
int score;
};
int get_score (struct game *game);
void set_score (struct game *game, int score);
int get_click (struct game *game);
void set_click (struct game *game, int click);
int get_multiplifier (struct game *game);
|