daTagAssist_Create

This commit is contained in:
Pheenoh
2023-02-14 15:00:14 -07:00
parent f8b3a0ef8e
commit e6fbe5dcbf
2 changed files with 31 additions and 13 deletions
@@ -2,5 +2,26 @@
#define D_A_TAG_ASSISTANCE_H
#include "dolphin/types.h"
#include "f_op/f_op_actor_mng.h"
class daTagAssist_c : public fopAc_ac_c {
public:
void create_init() {
mAttentionInfo.mFlags = 0;
field_0x570 = -1;
}
int create() {
if (!fopAcM_CheckCondition(this, 8)) {
new (this) daTagAssist_c();
fopAcM_OnCondition(this, 8);
}
create_init();
return cPhs_COMPLEATE_e;
}
u8 field_0x568[8];
s16 field_0x570;
};
#endif /* D_A_TAG_ASSISTANCE_H */