summaryrefslogtreecommitdiff
path: root/include/d/d_bg_s_gnd_chk.h
blob: 1d40fb3eb88be81e88543005d64225808a298f15 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifndef D_BG_D_BG_S_GND_CHK_H
#define D_BG_D_BG_S_GND_CHK_H

#include "SSystem/SComponent/c_bg_s_gnd_chk.h"
#include "d/d_bg_s_chk.h"

class dBgS_GndChk : public cBgS_GndChk, public dBgS_Chk {
public:
    dBgS_GndChk();
    virtual ~dBgS_GndChk();
};  // Size: 0x54

class dBgS_LinkGndChk : public dBgS_GndChk {
public:
    dBgS_LinkGndChk() { SetLink(); }
    virtual ~dBgS_LinkGndChk() {}
};

class dBgS_ObjGndChk : public dBgS_GndChk {
public:
    dBgS_ObjGndChk() { SetObj(); }

    virtual ~dBgS_ObjGndChk() {}
};

class dBgS_ObjGndChk_Wtr : public dBgS_ObjGndChk {
public:
    dBgS_ObjGndChk_Wtr();

    virtual ~dBgS_ObjGndChk_Wtr();
};

class dBgS_ObjGndChk_Spl : public dBgS_ObjGndChk {
public:
    dBgS_ObjGndChk_Spl();

    virtual ~dBgS_ObjGndChk_Spl();
};

class dBgS_ObjGndChk_All : public dBgS_ObjGndChk {
public:
    virtual ~dBgS_ObjGndChk_All();

    dBgS_ObjGndChk_All() { OnAll(); }
};

class dBgS_CamGndChk : public dBgS_GndChk {
public:
    dBgS_CamGndChk() { SetCam(); }

    virtual ~dBgS_CamGndChk();
};

class dBgS_CamGndChk_Wtr : public dBgS_CamGndChk {
public:
    dBgS_CamGndChk_Wtr();

    virtual ~dBgS_CamGndChk_Wtr();
};

#endif /* D_BG_D_BG_S_GND_CHK_H */