mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
21 lines
392 B
C
21 lines
392 B
C
#ifndef M_EVENT_MAP_NPC_H
|
|
#define M_EVENT_MAP_NPC_H
|
|
|
|
#include "types.h"
|
|
#include "m_actor.h"
|
|
#include "m_npc.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int mEvMN_GetJointEventRandomNpc(mActor_name_t* selected_npc_id);
|
|
extern int mEvNM_CheckJointEvent();
|
|
extern void mEvMN_GetEventNpcName(mActor_name_t* npc_name, int event, int idx, int param_4);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|