Implement & link ac_hanabi_npc1

This commit is contained in:
Cuyler36
2025-06-07 17:26:38 -04:00
parent e19e07c1fc
commit 3f711648da
5 changed files with 350 additions and 2 deletions
+15 -1
View File
@@ -3,11 +3,26 @@
#include "types.h"
#include "m_actor.h"
#include "ac_npc.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct hanabi_npc1_actor_s HANABI_NPC1_ACTOR;
typedef void (*aHN1_ACT_PROC)(HANABI_NPC1_ACTOR* actor);
struct hanabi_npc1_actor_s {
NPC_ACTOR npc_class;
int action;
aHN1_ACT_PROC act_proc;
s16 dst_pos_x;
s16 dst_pos_z;
int npc_idx;
u8 clap_se_no;
};
extern ACTOR_PROFILE Hanabi_Npc1_Profile;
#ifdef __cplusplus
@@ -15,4 +30,3 @@ extern ACTOR_PROFILE Hanabi_Npc1_Profile;
#endif
#endif