This commit is contained in:
Maide
2021-12-07 01:45:23 +00:00
committed by GitHub
parent 1ab0fb5557
commit 22c72301dc
3 changed files with 876 additions and 57 deletions
+1 -2
View File
@@ -1320,8 +1320,7 @@ beginseg
name "ovl_En_Rr"
compress
include "build/src/overlays/actors/ovl_En_Rr/z_en_rr.o"
include "build/data/ovl_En_Rr/ovl_En_Rr.data.o"
include "build/data/ovl_En_Rr/ovl_En_Rr.reloc.o"
include "build/src/overlays/actors/ovl_En_Rr/ovl_En_Rr_reloc.o"
endseg
beginseg
File diff suppressed because it is too large Load Diff
+52 -3
View File
@@ -7,10 +7,59 @@ struct EnRr;
typedef void (*EnRrActionFunc)(struct EnRr*, GlobalContext*);
enum {
/* 0 */ ENRR_0,
/* 1 */ ENRR_1,
/* 2 */ ENRR_2,
/* 3 */ ENRR_3,
};
typedef struct {
/* 0x00 */ f32 unk_00;
/* 0x04 */ f32 unk_04;
/* 0x08 */ f32 unk_08;
/* 0x0C */ f32 unk_0C;
/* 0x10 */ f32 unk_10;
/* 0x14 */ s16 unk_14;
/* 0x16 */ s16 unk_16;
/* 0x18 */ s16 unk_18;
/* 0x1A */ Vec3s unk_1A;
} EnRrStruct; // size = 0x20
typedef struct EnRr {
/* 0x0000 */ Actor actor;
/* 0x0144 */ EnRrActionFunc actionFunc;
/* 0x0148 */ char unk_144[0x27C];
/* 0x000 */ Actor actor;
/* 0x144 */ EnRrActionFunc actionFunc;
/* 0x148 */ ColliderCylinder collider1;
/* 0x194 */ ColliderCylinder collider2;
/* 0x1E0 */ u8 unk_1E0;
/* 0x1E1 */ u8 unk_1E1;
/* 0x1E2 */ u8 unk_1E2;
/* 0x1E4 */ s16 unk_1E4;
/* 0x1E6 */ s16 unk_1E6;
/* 0x1E8 */ s16 unk_1E8;
/* 0x1EA */ s16 unk_1EA;
/* 0x1EC */ s16 unk_1EC;
/* 0x1EE */ s16 unk_1EE;
/* 0x1F0 */ s16 unk_1F0;
/* 0x1F2 */ s16 unk_1F2;
/* 0x1F4 */ s16 unk_1F4;
/* 0x1F6 */ s16 unk_1F6;
/* 0x1F8 */ s16 unk_1F8;
/* 0x1FA */ s16 unk_1FA;
/* 0x1FC */ s16 unk_1FC;
/* 0x200 */ f32 unk_200;
/* 0x204 */ f32 unk_204;
/* 0x208 */ f32 unk_208;
/* 0x20C */ f32 unk_20C;
/* 0x210 */ f32 unk_210;
/* 0x214 */ f32 unk_214;
/* 0x218 */ f32 unk_218;
/* 0x21C */ f32 unk_21C;
/* 0x220 */ f32 unk_220;
/* 0x224 */ f32 unk_224;
/* 0x228 */ Vec3f unk_228;
/* 0x234 */ Vec3f unk_234[20];
/* 0x324 */ EnRrStruct unk_324[5];
} EnRr; // size = 0x3C4
extern const ActorInit En_Rr_InitVars;