mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-08-18 04:48:25 -04:00
Implement & link ac_ev_miko
This commit is contained in:
+13
-1
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user