blob: ffd4efc9446b66e0fee75dab64aea66f2f3680a8 (
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
|
#ifndef D_A_VRBOX_H
#define D_A_VRBOX_H
#include "d/d_com_inf_game.h"
/**
* @ingroup actors-unsorted
* @class vrbox_class
* @brief VR Box
*
* @details
*
*/
class vrbox_class : public fopAc_ac_c {
public:
/* 0x568 */ u8 unk_0x568[0x56C - 0x568];
/* 0x56C */ J3DModel* mpSoraModel;
/* 0x570 */ u8 unk_0x570[0x574 - 0x570];
/* 0x574 */ u8 field_0x574;
};
STATIC_ASSERT(sizeof(vrbox_class) == 0x578);
#endif /* D_A_VRBOX_H */
|