Files
tww/include/d/actor/d_a_shutter.h
T
LagoLunatic 025b7e459a Switch return type of _execute/_draw/_delete to be bool by default instead of BOOL
It's not completely consistent, but it seems like the majority used `bool`, and only a handful used `BOOL`. So I switched all of them to `bool` except for 13 TUs that stopped matching when changed like this.
2025-02-01 16:17:46 -05:00

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 */