Shipwright/soh/src/overlays/actors/ovl_En_Part/z_en_part.h

21 lines
399 B
C

#ifndef Z_EN_PART_H
#define Z_EN_PART_H
#include "ultra64.h"
#include "global.h"
struct EnPart;
typedef void (*EnPartActionFunc)(struct EnPart*, GlobalContext*);
typedef struct EnPart {
/* 0x000 */ Actor actor;
/* 0x14C */ u8 action;
/* 0x14E */ s16 timer;
/* 0x150 */ Gfx* displayList;
/* 0x154 */ f32 rotZ;
/* 0x158 */ f32 rotZSpeed;
} EnPart; // size = 0x015C
#endif