mirror of
https://github.com/wavemotion-dave/A5200DS.git
synced 2025-04-02 10:52:40 -04:00
12 lines
200 B
C
12 lines
200 B
C
#ifndef __HIGHSCORE_H
|
|
#define __HIGHSCORE_H
|
|
|
|
#include <nds.h>
|
|
|
|
#include "cartridge.h"
|
|
|
|
extern void highscore_init(void);
|
|
extern void highscore_save(void);
|
|
extern void highscore_display(void);
|
|
|
|
#endif
|