Implement & link ac_hanabi_npc0

This commit is contained in:
Cuyler36
2025-06-07 16:39:23 -04:00
parent 30501ebc48
commit e19e07c1fc
5 changed files with 410 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 hanabi_npc0_actor_s HANABI_NPC0_ACTOR;
typedef void (*aHN0_ACT_PROC)(HANABI_NPC0_ACTOR* actor);
struct hanabi_npc0_actor_s {
NPC_ACTOR npc_class;
int action;
int next_action;
aHN0_ACT_PROC act_proc;
s16 base_angle;
};
extern ACTOR_PROFILE Hanabi_Npc0_Profile;
#ifdef __cplusplus
@@ -15,4 +28,3 @@ extern ACTOR_PROFILE Hanabi_Npc0_Profile;
#endif
#endif