Files
tp/include/d/d_eye_hl.h
T
Jcw87 221f40e609 Remove #includes from headers (#334)
* add "global.h" to files that use it

* add MSL_C includes to files that use them

* remove dolphin includes from headers that don't need them

* remove JSupport includes from headers that don't need them

* remove JKernel includes from headers that don't need them

* remove JUtility includes from headers that don't need them

* remove J3D includes from headers that don't need them

* remove J2D includes from headers that don't need them

* remove JAudio2 includes from headers that don't need them

* remove Z2AudioLib includes from headers that don't need them

* remove JMessage includes from headers that don't need them

* remove JParticle includes from headers that don't need them

* remove SComponent includes from headers that don't need them

* remove dol includes from headers that don't need them

* sort includes
2023-05-12 12:10:14 -07:00

40 lines
825 B
C++

#ifndef D_D_EYE_HL_H
#define D_D_EYE_HL_H
#include "dolphin/types.h"
class J3DModelData;
struct ResTIMG;
class dEyeHL_c;
class dEyeHL_mng_c {
public:
/* 8009CA48 */ static void update();
/* 8009CB14 */ static void entry(dEyeHL_c*);
/* 8009CB34 */ static void remove(dEyeHL_c*);
static dEyeHL_mng_c* m_obj;
/* 0x00 */ u8 field_0x0[4];
/* 0x04 */ ResTIMG* m_timg;
/* 0x08 */ s16 m_lodBias;
/* 0x0A */ u8 field_0x0a[2];
/* 0x0C */ dEyeHL_mng_c* m_pre;
/* 0x10 */ dEyeHL_mng_c* m_next;
};
class dEyeHL_c : public dEyeHL_mng_c {
public:
dEyeHL_c() {
m_timg = NULL;
m_pre = NULL;
m_next = NULL;
}
/* 8009C964 */ void entry(J3DModelData*, char const*);
/* 8009CA28 */ void remove();
/* 80140C80 */ ~dEyeHL_c();
};
#endif /* D_D_EYE_HL_H */