blob: 56850f222c048d90c42e92211f80e3b8446a6cf3 (
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 initHighScore(char *file);
extern int addPlayerInHighScore(char *name, int score);
extern char *getTableItem(int index);
extern void quitHighScore();
#endif
|