Made high_scores to use the lispreader (i wasn't able to do proper testing, could...
[supertux.git] / src / high_scores.h
1 /*
2
3   by Adam Czachorowski
4   gislan@o2.pl
5
6 */
7
8 #ifndef SUPERTUX_HIGH_SCORES_H
9 #define SUPERTUX_HIGH_SCORES_H
10
11 #include <stdio.h>
12
13 extern int hs_score;
14 extern std::string hs_name; /* highscores global variables*/
15
16 void save_hs(int score);
17 void load_hs();
18
19 #endif