Implement & link ac_hanami_npc1

This commit is contained in:
Cuyler36
2025-06-07 20:53:28 -04:00
parent 9abe5384ea
commit 15f3c323d6
5 changed files with 363 additions and 2 deletions
+12 -1
View File
@@ -3,11 +3,23 @@
#include "types.h"
#include "m_actor.h"
#include "ac_npc.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct hanami_npc1_actor_s HANAMI_NPC1_ACTOR;
typedef void (*aHM1_ACT_PROC)(HANAMI_NPC1_ACTOR* actor);
struct hanami_npc1_actor_s {
NPC_ACTOR npc_class;
int action;
int next_action;
aHM1_ACT_PROC act_proc;
};
extern ACTOR_PROFILE Hanami_Npc1_Profile;
#ifdef __cplusplus
@@ -15,4 +27,3 @@ extern ACTOR_PROFILE Hanami_Npc1_Profile;
#endif
#endif