Start chuchuBoss.c

This commit is contained in:
21aslade
2020-11-07 13:58:19 -07:00
parent bc0a593f97
commit 4b6f822829
3 changed files with 20 additions and 33 deletions
+19
View File
@@ -0,0 +1,19 @@
#include "entity.h"
#include "functions.h"
#include "enemy.h"
extern void (*const gUnk_080CC19C[])(Entity*);
extern void sub_08001324(Entity*);
void sub_08027870(Entity*);
void ChuchuBoss(Entity* this) {
gUnk_080CC19C[GetNextFunction(this)]((Entity*)this);
}
void sub_08025CBC(Entity* this) {
sub_08001324(this);
if (this->entityType.form == 0) {
sub_08027870(this);
}
}