mirror of
https://github.com/zeldaret/ss
synced 2026-05-26 15:45:19 -04:00
20 lines
281 B
C++
20 lines
281 B
C++
#ifndef SAVE_RELATED_H
|
|
#define SAVE_RELATED_H
|
|
|
|
class SaveRelated {
|
|
public:
|
|
static void create();
|
|
static void remove();
|
|
|
|
static SaveRelated *GetInstance() {
|
|
return sInstance;
|
|
}
|
|
|
|
void fn_80015F40();
|
|
|
|
private:
|
|
static SaveRelated *sInstance;
|
|
};
|
|
|
|
#endif
|