Files
tmc/src/npc/moblinLady.c
T
2023-08-01 11:36:11 +02:00

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);
}
}