Shipwright/soh/src/overlays/actors/ovl_Arrow_Fire/z_arrow_fire.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
500 B
C

#ifndef Z_ARROW_FIRE_H
#define Z_ARROW_FIRE_H
#include "ultra64.h"
#include "global.h"
struct ArrowFire;
typedef void (*ArrowFireActionFunc)(struct ArrowFire*, GlobalContext*);
typedef struct ArrowFire {
/* 0x0000 */ Actor actor;
/* 0x014C */ Vec3f unkPos;
/* 0x0158 */ f32 unk_158;
/* 0x015C */ f32 unk_15C;
/* 0x0160 */ ArrowFireActionFunc actionFunc;
/* 0x0164 */ s16 radius;
/* 0x0166 */ u16 timer;
/* 0x0168 */ u8 alpha;
} ArrowFire; // size = 0x016C
#endif