mirror of
https://github.com/zeldaret/tmc
synced 2026-08-18 21:48:21 -04:00
3b87c04162
To define ENT_DEPRECATED in files that still need the old entity structs.
23 lines
415 B
C
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,
|
|
};
|