blob: 34fc301b9676418d55dea0dfed466a3e706da2ec (
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
|
#ifndef D_D_SELECT_ICON_H
#define D_D_SELECT_ICON_H
#include "JSystem/J2DGraph/J2DScreen.h"
#include "d/pane/d_pane_class.h"
class dSi_HIO_c {
public:
virtual ~dSi_HIO_c();
dSi_HIO_c();
u8 field_0x4[4];
};
class dSelect_icon_c {
public:
/* 80195A3C */ void animation();
/* 80195B40 */ void setAlpha(u8);
/* 80195B70 */ void setPos(J2DPane*, f32, f32);
virtual ~dSelect_icon_c() {}
void drawSelf() {
// Not sure what field_0x4 is
}
/* 0x04 */ u8 field_0x4[4];
/* 0x08 */ J2DScreen* field_0x8;
/* 0x0C */ CPaneMgrAlpha* field_0xc;
/* 0x10 */ CPaneMgr* field_0x10;
/* 0x14 */ f32 field_0x14;
/* 0x18 */ f32 field_0x18;
/* 0x1C */ J2DAnmBase* field_0x1c;
/* 0x20 */ f32 field_0x20;
/* 0x24 */ J2DAnmBase* field_0x24;
/* 0x28 */ f32 field_0x28;
/* 0x2C */ f32 field_0x2c;
};
#endif /* D_D_SELECT_ICON_H */
|