4520781f25
With the removal of these warnings we slightly improve the robustness of the highscore parsing, handling some more cases of bad parsing/writing and failure to open files.
11 lines
182 B
C
11 lines
182 B
C
#ifndef HIGHSCORE_H
|
|
#define HIGHSCORE_H
|
|
|
|
#include "engine.h"
|
|
|
|
void highscore_reset(void);
|
|
long highscore_load(struct gamestate *g);
|
|
void highscore_save(struct gamestate *g);
|
|
|
|
#endif
|