blob: dc0547f202c70c13bfe1f8263ca65bd64f11c0cb (
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 headRot;
/* 0x02A2 */ Vec3s torsoRot;
/* 0x02A8 */ u16 trackingFlags;
/* 0x02AA */ s16 cojiroSfxTimer;
/* 0x02AC */ EnHsActionFunc actionFunc;
} EnHs; // size = 0x02B0
#endif
|