mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
a6e76c0841
* some wii OS fixes * remove old dol2asm comments * remove dol2asm.h * remove function address comments * normalize ATTRIBUTE_ALIGN usage * DECL_WEAK macro * fix gcc attribute weak macro * wrap more mwcc specific things in ifdefs * fixes * fix revo sdk version flags * fixes
47 lines
849 B
C++
47 lines
849 B
C++
#ifndef D_A_OBJ_KIPOT_H
|
|
#define D_A_OBJ_KIPOT_H
|
|
|
|
#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:
|
|
void setBaseMtx();
|
|
int create();
|
|
int Execute();
|
|
void procMain();
|
|
void init_modeWait();
|
|
void modeWait();
|
|
s32 chkEvent();
|
|
int Draw();
|
|
int Delete();
|
|
|
|
private:
|
|
/* 0x568 */ u8 field_0x568[0x574 - 0x568];
|
|
/* 0x574 */ u8 mMode;
|
|
/* 0x575 */ u8 field_0x575;
|
|
/* 0x576 */ u8 field_0x576[0x578 - 0x576];
|
|
};
|
|
|
|
STATIC_ASSERT(sizeof(daKiPot_c) == 0x578);
|
|
|
|
class daKiPot_HIO_c : public mDoHIO_entry_c {
|
|
public:
|
|
daKiPot_HIO_c();
|
|
virtual ~daKiPot_HIO_c() {};
|
|
|
|
void genMessage(JORMContext*);
|
|
|
|
/* 0x00 */ /* vtable */
|
|
/* 0x06 */ u8 field_0x06;
|
|
};
|
|
|
|
#endif /* D_A_OBJ_KIPOT_H */
|