Added highscore functionality

This commit is contained in:
Tiehuis
2015-02-22 11:29:15 +13:00
parent 75ef085260
commit c8e55ed6e9
5 changed files with 90 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
#ifndef HIGHSCORE_H
#define HIGHSCORE_H
void highscore_reset(void);
void highscore_load(struct gamestate *g);
void highscore_save(struct gamestate *g);
#endif