Implement & link ac_npc_sleep_obaba

This commit is contained in:
Cuyler36
2025-02-09 03:50:15 -05:00
parent a1b6ff8feb
commit af43673e24
5 changed files with 217 additions and 2 deletions
+11 -1
View File
@@ -3,11 +3,22 @@
#include "types.h"
#include "m_actor.h"
#include "ac_npc.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct npc_sleep_obaba_actor_s NPC_SLEEP_OBABA_ACTOR;
typedef void (*aNSO_ACT_PROC)(NPC_SLEEP_OBABA_ACTOR* actor);
struct npc_sleep_obaba_actor_s {
NPC_ACTOR npc_class;
int action;
aNSO_ACT_PROC act_proc;
};
extern ACTOR_PROFILE Npc_Sleep_Obaba_Profile;
#ifdef __cplusplus
@@ -15,4 +26,3 @@ extern ACTOR_PROFILE Npc_Sleep_Obaba_Profile;
#endif
#endif