blob: 7326d6d754b71a324eb78ac8962a42e4c77a73d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef HIGH_SCORE_H
# define HIGH_SCORE_H
# define HIGHSCORE_MAX_PLAYERS 100
extern void highScore_init(char *file);
extern int table_add(char *name, int score);
extern char *highScore_get_table(int index);
extern void highScore_quit();
#endif
|