2021-03-28 22:49:05 +02:00
|
|
|
#ifndef D_A_OBJ_KIPOT_H
|
|
|
|
|
#define D_A_OBJ_KIPOT_H
|
|
|
|
|
|
2024-05-29 01:49:10 -06:00
|
|
|
#include "f_op/f_op_actor_mng.h"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @ingroup actors-objects
|
|
|
|
|
* @class daKiPot_c
|
|
|
|
|
* @brief Coro Pot
|
|
|
|
|
*
|
|
|
|
|
* @details
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
class daKiPot_c : public fopAc_ac_c {
|
|
|
|
|
public:
|
2025-11-30 14:23:42 -08:00
|
|
|
void setBaseMtx();
|
|
|
|
|
int create();
|
|
|
|
|
int Execute();
|
|
|
|
|
void procMain();
|
|
|
|
|
void init_modeWait();
|
|
|
|
|
void modeWait();
|
|
|
|
|
s32 chkEvent();
|
|
|
|
|
int Draw();
|
|
|
|
|
int Delete();
|
2024-05-29 01:49:10 -06:00
|
|
|
|
|
|
|
|
private:
|
2024-12-08 13:50:44 +00:00
|
|
|
/* 0x568 */ u8 field_0x568[0x574 - 0x568];
|
|
|
|
|
/* 0x574 */ u8 mMode;
|
|
|
|
|
/* 0x575 */ u8 field_0x575;
|
|
|
|
|
/* 0x576 */ u8 field_0x576[0x578 - 0x576];
|
2024-05-29 01:49:10 -06:00
|
|
|
};
|
2024-06-10 01:34:52 -06:00
|
|
|
|
2024-05-29 01:49:10 -06:00
|
|
|
STATIC_ASSERT(sizeof(daKiPot_c) == 0x578);
|
|
|
|
|
|
2024-12-08 13:50:44 +00:00
|
|
|
class daKiPot_HIO_c : public mDoHIO_entry_c {
|
2024-05-29 01:49:10 -06:00
|
|
|
public:
|
2025-11-30 14:23:42 -08:00
|
|
|
daKiPot_HIO_c();
|
|
|
|
|
virtual ~daKiPot_HIO_c() {};
|
2024-12-08 13:50:44 +00:00
|
|
|
|
2025-03-22 21:00:51 -04:00
|
|
|
void genMessage(JORMContext*);
|
2024-12-08 13:50:44 +00:00
|
|
|
|
2025-03-22 21:00:51 -04:00
|
|
|
/* 0x00 */ /* vtable */
|
2024-12-08 13:50:44 +00:00
|
|
|
/* 0x06 */ u8 field_0x06;
|
2024-05-29 01:49:10 -06:00
|
|
|
};
|
|
|
|
|
|
2021-03-28 22:49:05 +02:00
|
|
|
#endif /* D_A_OBJ_KIPOT_H */
|