2048-cli/src/highscore.h

11 lines
182 B
C
Raw Normal View History

2015-02-21 22:29:15 +00:00
#ifndef HIGHSCORE_H
#define HIGHSCORE_H
#include "engine.h"
2015-02-21 22:29:15 +00:00
void highscore_reset(void);
long highscore_load(struct gamestate *g);
2015-02-21 22:29:15 +00:00
void highscore_save(struct gamestate *g);
#endif