little change to improve win32 portability
[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 char hs_name[62]; /* highscores global variables*/
15
16 void save_hs(int score);
17 void load_hs();
18
19 #endif