blob: cf2097c11a1c5e4eaae1165a46077b5b02d4654d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef Z_EN_HS_H
#define Z_EN_HS_H
#include "ultra64.h"
#include "actor.h"
struct EnHs;
typedef void (*EnHsActionFunc)(struct EnHs*, struct PlayState*);
typedef struct EnHs {
/* 0x0000 */ Actor actor;
/* 0x014C */ ColliderCylinder collider;
/* 0x0198 */ SkelAnime skelAnime;
/* 0x01DC */ Vec3s jointTable[16];
/* 0x023C */ Vec3s morphTable[16];
/* 0x029C */ Vec3s unk_29C;
/* 0x02A2 */ Vec3s unk_2A2;
/* 0x02A8 */ u16 unk_2A8;
/* 0x02AA */ s16 unk_2AA;
/* 0x02AC */ EnHsActionFunc actionFunc;
} EnHs; // size = 0x02B0
#endif
|