Implement and link ac_npc_majin5.c

This commit is contained in:
Vi
2025-05-16 00:15:19 -05:00
parent ee32e1481d
commit ac8c73be0b
4 changed files with 194 additions and 1 deletions
+10
View File
@@ -1,14 +1,24 @@
#ifndef AC_NPC_MAJIN5_H
#define AC_NPC_MAJIN5_H
#include "ac_npc.h"
#include "types.h"
#include "m_actor.h"
#ifdef __cplusplus
extern "C" {
#endif
#define ANMJ5_THINK_INIT 0
#define ANMJ5_THINK_MAIN 1
#define ANMJ5_SCHEDULE_INIT 0
#define ANMJ5_SCHEDULE_MAIN 1
typedef struct npc_majin5_s NPC_MAJIN5_ACTOR;
extern ACTOR_PROFILE Npc_Majin5_Profile;
/* sizeof(npc_majin5_s) == 0x994*/
struct npc_majin5_s {
/* 0x000 */ NPC_ACTOR npc_class;
};
#ifdef __cplusplus
}