mirror of
https://github.com/zeldaret/tmc
synced 2026-06-04 02:47:05 -04:00
18 lines
391 B
C
18 lines
391 B
C
#include "global.h"
|
|
#include "entity.h"
|
|
#include "npc.h"
|
|
|
|
void FusionMenuNPC(Entity* this) {
|
|
if (gNPCFunctions[this->subtimer][2] != NULL) {
|
|
gNPCFunctions[this->subtimer][2](this);
|
|
} else {
|
|
DeleteThisEntity();
|
|
}
|
|
}
|
|
|
|
void FusionMenuNPC_Head(Entity* this) {
|
|
if (gNPCFunctions[this->subtimer][1] != NULL) {
|
|
gNPCFunctions[this->subtimer][1](this);
|
|
}
|
|
}
|