Implement & link ac_hanami_npc0

This commit is contained in:
Cuyler36
2025-06-07 20:10:51 -04:00
parent 3f711648da
commit 9abe5384ea
5 changed files with 302 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 hanami_npc0_actor_s HANAMI_NPC0_ACTOR;
typedef void (*aHM0_ACT_PROC)(HANAMI_NPC0_ACTOR* actor);
struct hanami_npc0_actor_s {
NPC_ACTOR npc_class;
int action;
aHM0_ACT_PROC act_proc;
int event_idx;
u8 clap_se_no;
};
extern ACTOR_PROFILE Hanami_Npc0_Profile;
#ifdef __cplusplus
@@ -15,4 +28,3 @@ extern ACTOR_PROFILE Hanami_Npc0_Profile;
#endif
#endif