Implement & link ac_ev_kabuPeddler

This commit is contained in:
Cuyler36
2024-01-21 15:29:14 -05:00
parent f5ef048bcd
commit 899cae3c9b
4 changed files with 322 additions and 0 deletions
+16
View File
@@ -3,11 +3,27 @@
#include "types.h"
#include "m_actor.h"
#include "ac_npc.h"
#ifdef __cplusplus
extern "C" {
#endif
#define aEKPD_KABU_TYPE_NUM 4
typedef struct ev_kabuPeddler_s EV_KABUPEDDLER_ACTOR;
typedef void (*aEKPD_PROC)(EV_KABUPEDDLER_ACTOR*, GAME_PLAY*);
typedef void (*aEKPD_SETUP_PROC)(EV_KABUPEDDLER_ACTOR*, GAME_PLAY*, int);
struct ev_kabuPeddler_s {
NPC_ACTOR npc_class;
int kabu_type;
int talk_act;
aEKPD_PROC talk_proc;
aEKPD_SETUP_PROC setup_talk_proc;
};
extern ACTOR_PROFILE Ev_KabuPeddler_Profile;
#ifdef __cplusplus