Files
tp/include/d/actor/d_a_obj_snow_soup.h
T
12eb254d76 switch to dtk setup (#2203)
* switch to dtk setup

* some cleanup / fixes

* cleanup d_a_alink literals

* Restore doxygen, update CI & README.md (#1)

* Fix build image ref (#2)

---------

Co-authored-by: Luke Street <luke@street.dev>
2024-10-10 08:29:58 -06:00

43 lines
1.2 KiB
C++

#ifndef D_A_OBJ_SNOW_SOUP_H
#define D_A_OBJ_SNOW_SOUP_H
#include "SSystem/SComponent/c_phase.h"
#include "f_op/f_op_actor.h"
/**
* @ingroup actors-objects
* @class daObjSnowSoup_c
* @brief Snowpeak Ruins Soup Pot?
*
* @details
*
*/
class daObjSnowSoup_c : public fopAc_ac_c, public request_of_phase_process_class {
public:
/* 80CDF878 */ daObjSnowSoup_c();
/* 80CDF910 */ virtual ~daObjSnowSoup_c();
/* 80CDF990 */ int createHeap();
/* 80CDFA3C */ cPhs__Step create();
/* 80CDFB70 */ int Delete();
/* 80CDFBC4 */ int draw();
/* 80CDFC40 */ int execute();
/* 80CDFE14 */ void init();
/* 80CDFEA4 */ void setModelMtx();
/* 80CDFF14 */ void createSmkEmtCommon();
/* 80CDFFF8 */ void deleteSmkEmtCommon();
/* 80CE003C */ void createSmkEmtChange(int);
/* 80CE0134 */ void deleteSmkEmtChange(int);
private:
/* 0x574 */ cXyz mFirewoodPos;
/* 0x580 */ cXyz mBubblePos;
/* 0x58C */ JPABaseEmitter* mpSmkEmtCommon[4];
/* 0x59C */ JPABaseEmitter* mpSmkEmtChange[3][2];
/* 0x5B4 */ J3DModel* mpModel[3];
/* 0x5C0 */ u8 mState;
};
STATIC_ASSERT(sizeof(daObjSnowSoup_c) == 0x5C4);
#endif /* D_A_OBJ_SNOW_SOUP_H */