Shipwright/soh/src/overlays/actors/ovl_En_Kusa/z_en_kusa.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

26 lines
517 B
C

#ifndef Z_EN_KUSA_H
#define Z_EN_KUSA_H
#include "ultra64.h"
#include "global.h"
struct EnKusa;
typedef void (*EnKusaActionFunc)(struct EnKusa*, GlobalContext*);
typedef enum {
/* 0 */ ENKUSA_TYPE_0,
/* 1 */ ENKUSA_TYPE_1,
/* 2 */ ENKUSA_TYPE_2
} EnKusaType;
typedef struct EnKusa {
/* 0x0000 */ Actor actor;
/* 0x014C */ EnKusaActionFunc actionFunc;
/* 0x0150 */ ColliderCylinder collider;
/* 0x019C */ s16 timer;
/* 0x019E */ s8 objBankIndex;
} EnKusa; // size = 0x01A0
#endif