diff options
Diffstat (limited to 'include/heightScore.h')
| -rw-r--r-- | include/heightScore.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/heightScore.h b/include/heightScore.h new file mode 100644 index 0000000..b1bf7e2 --- /dev/null +++ b/include/heightScore.h @@ -0,0 +1,13 @@ + +#ifndef HEIGHT_SCORE_H + +#define HEIGHT_SCORE_H + +#define HEIGHTSCORE_MAX_PLAYERS 100 + +extern void initHeightScore(char *file); +extern int addPlayerInHighScore(char *name, int score); +extern char* getTableItem(int index); +extern void quitHeightScore(); + +#endif |