Shipwright/soh/src/overlays/actors/ovl_En_Part/z_en_part.h
M4xw 39cc86c260 git subrepo clone https://github.com/HarbourMasters/soh.git
subrepo:
  subdir:   "soh"
  merged:   "ba904bbd0"
upstream:
  origin:   "https://github.com/HarbourMasters/soh.git"
  branch:   "master"
  commit:   "ba904bbd0"
git-subrepo:
  version:  "0.4.1"
  origin:   "???"
  commit:   "???"
2022-03-22 02:51:23 +01:00

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