mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-10 19:16:45 -04:00
d_a_npc_nz: add .inc file, match .data section
This commit is contained in:
@@ -14,15 +14,15 @@ class J3DNode;
|
||||
class daNpc_Nz_c : public fopNpc_npc_c {
|
||||
public:
|
||||
enum Proc_e {
|
||||
PROC_0_e = 0,
|
||||
PROC_1_e = 1,
|
||||
PROC_INIT = 0,
|
||||
PROC_EXEC = 1,
|
||||
};
|
||||
|
||||
// objdiff says this is a weak function
|
||||
// but defining it here with {} causes it to be inlined with fopAcM_SetupActor which breaks things
|
||||
daNpc_Nz_c();
|
||||
|
||||
void modeProcInit(int) {}
|
||||
void modeProcInit(int newMode) { modeProc(PROC_INIT, newMode); }
|
||||
|
||||
BOOL NodeCallBack(J3DNode*, int);
|
||||
BOOL TailNodeCallBack(J3DNode*, int);
|
||||
|
||||
@@ -9,7 +9,7 @@ class daObj_Hole_c : public fopAc_ac_c {
|
||||
public:
|
||||
enum Proc_e {
|
||||
PROC_INIT = 0,
|
||||
PROC_EXEC = 1
|
||||
PROC_EXEC = 1,
|
||||
};
|
||||
|
||||
enum Mode {
|
||||
|
||||
@@ -48,7 +48,7 @@ class daRd_c : public fopEn_enemy_c {
|
||||
public:
|
||||
enum Proc_e {
|
||||
PROC_INIT = 0,
|
||||
PROC_EXEC = 1
|
||||
PROC_EXEC = 1,
|
||||
};
|
||||
|
||||
enum Mode {
|
||||
|
||||
Reference in New Issue
Block a user