mirror of
https://github.com/zeldaret/tmc
synced 2026-05-30 00:47:12 -04:00
17 lines
343 B
C
17 lines
343 B
C
#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,
|
|
};
|