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