Decompile enemy66

This commit is contained in:
Tal Hayon
2022-01-21 12:33:22 +02:00
parent 1726303213
commit 3ffddc6c0e
5 changed files with 18 additions and 52 deletions
+16
View File
@@ -0,0 +1,16 @@
#include "entity.h"
void (*const gUnk_080D2ABC[])(Entity*);
extern void sub_08029270(Entity* this);
void Enemy66(Entity* this) {
if (gUnk_080D2ABC[this->field_0xf]) {
gUnk_080D2ABC[this->field_0xf](this);
} else {
DeleteThisEntity();
}
}
void (*const gUnk_080D2ABC[103])(Entity*) = {
[22] = sub_08029270,
};