mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 06:54:16 -04:00
29 lines
613 B
C++
29 lines
613 B
C++
#ifndef D_A_SHUTTER_H
|
|
#define D_A_SHUTTER_H
|
|
|
|
#include "f_op/f_op_actor.h"
|
|
#include "SSystem/SComponent/c_phase.h"
|
|
|
|
class daShutter_c : public fopAc_ac_c {
|
|
public:
|
|
BOOL _delete();
|
|
void CreateHeap();
|
|
s32 Create();
|
|
s32 _create();
|
|
void set_mtx();
|
|
BOOL _execute();
|
|
void shutter_move();
|
|
void demo();
|
|
BOOL _draw();
|
|
|
|
public:
|
|
/* 0x290 */ request_of_phase_process_class mPhs;
|
|
/* 0x298 */ u8 m298[0x308 - 0x298];
|
|
/* 0x308 */ cXyz m308[2];
|
|
/* 0x320 */ u8 m320[0x335 - 0x320];
|
|
/* 0x335 */ u8 mType;
|
|
/* 0x336 */ u8 m336[0x33C - 0x336];
|
|
};
|
|
|
|
#endif /* D_A_SHUTTER_H */
|