summaryrefslogtreecommitdiff
path: root/src/server/heightScore.h
blob: 474826479612d35341932e6948632fa9e957b2f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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