- fixed problem with last_menu not being able to handle menues deeper than two submenues
[supertux.git] / src / high_scores.h
index 1e7421f..bba452e 100644 (file)
@@ -5,8 +5,15 @@
 
 */
 
-# include <stdio.h>
+#ifndef SUPERTUX_HIGH_SCORES_H
+#define SUPERTUX_HIGH_SCORES_H
+
+#include <stdio.h>
+
+extern int hs_score;
+extern std::string hs_name; /* highscores global variables*/
 
 void save_hs(int score);
-int load_hs();
-FILE * opendata(char * mode);
+void load_hs();
+
+#endif