blob: 5f836e36ae422047d44209ffae9ae42d9ae0abf9 (
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
32
33
|
#ifndef D_T_CLEF_GAME_H
#define D_T_CLEF_GAME_H
#include "d/t/d_tg.h"
class dTgClefGame_c : public dTg_c {
public:
dTgClefGame_c() {}
virtual ~dTgClefGame_c() {}
static dTgClefGame_c *GetInstance() {
return sInstance;
}
u8 getField_0x14C(s32 idx) const {
return field_0x14C[idx];
}
u8 getField_0x15D(s32 idx) const {
return field_0x15D[idx];
}
private:
static dTgClefGame_c *sInstance;
static const s32 NUM_TADTONE_GROUPS = 17;
/* 0x0FC */ u8 _0x0FC[0x14C - 0x0FC];
/* 0x14C */ u8 field_0x14C[NUM_TADTONE_GROUPS];
/* 0x15D */ u8 field_0x15D[NUM_TADTONE_GROUPS];
};
#endif
|