Shipwright/soh/src/overlays/actors/ovl_En_Wall_Tubo/z_en_wall_tubo.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

22 lines
542 B
C

#ifndef Z_EN_WALL_TUBO_H
#define Z_EN_WALL_TUBO_H
#include "ultra64.h"
#include "global.h"
#include "overlays/actors/ovl_En_Bom_Bowl_Man/z_en_bom_bowl_man.h"
struct EnWallTubo;
typedef void (*EnWallTuboActionFunc)(struct EnWallTubo*, GlobalContext*);
typedef struct EnWallTubo {
/* 0x0000 */ Actor actor;
/* 0x014C */ EnWallTuboActionFunc actionFunc;
/* 0x0150 */ s16 timer;
/* 0x0154 */ Vec3f explosionCenter;
/* 0x0160 */ EnBomBowlMan* chuGirl;
/* 0x0164 */ Vec3f unk_164;
} EnWallTubo; // size = 0x0170
#endif