Shipwright/soh/src/overlays/actors/ovl_En_Dy_Extra/z_en_dy_extra.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

23 lines
524 B
C

#ifndef Z_EN_DY_EXTRA_H
#define Z_EN_DY_EXTRA_H
#include "ultra64.h"
#include "global.h"
struct EnDyExtra;
typedef void (*EnDyExtraActionFunc)(struct EnDyExtra*, GlobalContext*);
typedef struct EnDyExtra {
/* 0x0000 */ Actor actor;
/* 0x014C */ EnDyExtraActionFunc actionFunc;
/* 0x0150 */ s16 type;
/* 0x0152 */ s16 trigger;
/* 0x0154 */ s16 timer;
/* 0x0158 */ f32 unk_158;
/* 0x015C */ Vec3f scale;
/* 0x0168 */ Vec3f unk_168; // Set and not used
} EnDyExtra; // size = 0x0174
#endif