Files
dusklight/include/d/actor/d_a_obj_suisya.h
T
gymnast86 b748eaca1e Remove private specifiers from game code classes (#2375)
* remove private specifiers from game code

* fix formatting

* fix more formatting

* Add some missing public modifiers

---------

Co-authored-by: Luke Street <luke@street.dev>
2026-09-03 09:30:26 -06:00

33 lines
638 B
C++

#ifndef D_A_OBJ_SUISYA_H
#define D_A_OBJ_SUISYA_H
#include "f_op/f_op_actor_mng.h"
#include "d/d_bg_s_acch.h"
/**
* @ingroup actors-objects
* @class daObj_Suisya_c
* @brief Water Wheel
*
* @details
*
*/
class daObj_Suisya_c : public fopAc_ac_c {
public:
int draw();
int execute();
int _delete();
int CreateHeap();
int create();
/* 0x568 */ request_of_phase_process_class mPhase;
/* 0x570 */ J3DModel* mpModel;
/* 0x574 */ u32 mShadowKey;
/* 0x578 */ dBgS_AcchCir mAcchCir;
/* 0x5B8 */ dBgS_ObjAcch mAcch;
};
STATIC_ASSERT(sizeof(daObj_Suisya_c) == 0x790);
#endif /* D_A_OBJ_SUISYA_H */