Implement & link ac_ev_miko

This commit is contained in:
Cuyler36
2025-03-23 01:18:37 -04:00
parent 6b4d5ed8a6
commit 7c7a183e82
4 changed files with 321 additions and 2 deletions
+13 -1
View File
@@ -3,11 +3,24 @@
#include "types.h"
#include "m_actor.h"
#include "ac_npc.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct ev_miko_actor_s EV_MIKO_ACTOR;
typedef void (*aEMK_TALK_PROC)(EV_MIKO_ACTOR* miko, GAME_PLAY* play);
struct ev_miko_actor_s {
NPC_ACTOR npc_class;
int talk_action;
aEMK_TALK_PROC talk_proc;
int omikuji;
u8 in_front;
};
extern ACTOR_PROFILE Ev_Miko_Profile;
#ifdef __cplusplus
@@ -15,4 +28,3 @@ extern ACTOR_PROFILE Ev_Miko_Profile;
#endif
#endif