mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-29 08:42:53 -04:00
025b7e459a
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.
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 */
|