blob: 604afb77937d306ca7afafd1f4d229478c33f3aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef HIGH_SCORE_H
#define HIGH_SCORE_H
#define HIGHSCORE_MAX_PLAYERS 100
extern void high_score_init(char *file);
extern int table_add(char *name, int score);
extern char *high_score_get_table(int index);
extern void high_score_quit();
#endif /* HIGH_SCORE_H */
|