mirror of
https://github.com/zeldaret/tmc
synced 2026-06-11 05:08:41 -04:00
19 lines
329 B
C
19 lines
329 B
C
/**
|
|
* @file moblinLady.c
|
|
* @ingroup NPCs
|
|
*
|
|
* @brief Moblin Lady NPC
|
|
*/
|
|
#define NENT_DEPRECATED
|
|
#include "entity.h"
|
|
#include "npc.h"
|
|
|
|
void MoblinLady(Entity* this) {
|
|
if (this->action == 0) {
|
|
this->action++;
|
|
InitScriptForNPC(this);
|
|
} else {
|
|
ExecuteScriptAndHandleAnimation(this, NULL);
|
|
}
|
|
}
|