Implement & link ac_countdown_npc0

This commit is contained in:
Cuyler36
2025-06-08 00:24:28 -04:00
parent 15f3c323d6
commit 4d67ba518f
5 changed files with 468 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 countdown_npc0_actor_s COUNTDOWN_NPC0_ACTOR;
typedef void (*aCD0_ACT_PROC)(COUNTDOWN_NPC0_ACTOR *actor);
struct countdown_npc0_actor_s {
NPC_ACTOR npc_class;
int action;
aCD0_ACT_PROC act_proc;
int term;
};
extern ACTOR_PROFILE Countdown_Npc0_Profile;
#ifdef __cplusplus
@@ -15,4 +27,3 @@ extern ACTOR_PROFILE Countdown_Npc0_Profile;
#endif
#endif