Files
tmc/src/enemy/enemy66.c
T
octorock 3b87c04162 Invert NENT_DEPRECATED define
To define ENT_DEPRECATED in files that still need the old entity structs.
2023-12-30 18:30:00 +01:00

23 lines
415 B
C

/**
* @file enemy66.c
* @ingroup Enemies
*
* @brief Enemy66 enemy
*/
#include "entity.h"
void (*const gUnk_080D2ABC[])(Entity*);
extern void sub_08029270(Entity* this);
void Enemy66(Entity* this) {
if (gUnk_080D2ABC[this->subtimer]) {
gUnk_080D2ABC[this->subtimer](this);
} else {
DeleteThisEntity();
}
}
void (*const gUnk_080D2ABC[103])(Entity*) = {
[22] = sub_08029270,
};