blob: 65436c12a686b42242d91334a8cd345b905e70b5 (
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
|
#ifndef D_LYT_BOSS_CAPTION_H
#define D_LYT_BOSS_CAPTION_H
#include "common.h"
class dLytBossCaption_c {
public:
static dLytBossCaption_c *GetInstance() {
return sInstance;
}
void show(const char *label, UNKWORD);
// I believe this is the inline that causes all the Rev0 -> Rev1 pain in RELs...
void unk_inline() {
field_0x645 = 0;
field_0x646 = 0;
}
private:
static dLytBossCaption_c *sInstance;
u8 _0x00[0x645 - 0x00];
u8 field_0x645;
u8 field_0x646;
};
#endif
|