summaryrefslogtreecommitdiff
path: root/include/toBeSorted/save_related.h
blob: 0072dc1c496896506caabd875401794b332c92ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef SAVE_RELATED_H
#define SAVE_RELATED_H

#include "common.h"

class SaveRelated {
public:
    static void create();
    static void remove();

    static SaveRelated *GetInstance() {
        return sInstance;
    }

    void fn_80015EA0();
    void fn_80015EC0();
    void fn_80015F40();

    bool getField_0x09() const {
        return field_0x09;
    }

private:
    static SaveRelated *sInstance;

    /* 0x00 */ u8 _0x00[0x08 - 0x00];
    /* 0x08 */ u8 field_0x08;
    /* 0x09 */ bool field_0x09;
};

#endif