Shipwright/soh/src/overlays/actors/ovl_Demo_Gt/z_demo_gt.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

25 lines
583 B
C

#ifndef Z_DEMO_GT_H
#define Z_DEMO_GT_H
#include "ultra64.h"
#include "global.h"
struct DemoGt;
typedef void (*DemoGtUpdateFunc)(struct DemoGt*, GlobalContext*);
typedef void (*DemoGtDrawFunc)(struct DemoGt*, GlobalContext*);
typedef struct DemoGt {
/* 0x0000 */ DynaPolyActor dyna;
/* 0x0164 */ s32 updateMode;
/* 0x0168 */ s32 drawConfig;
/* 0x016C */ Vec3s unk_16C;
/* 0x0172 */ s16 unk_172;
/* 0x0174 */ s16 unk_174;
/* 0x0178 */ s32 unk_178[4];
/* 0x0188 */ s32 unk_188[4];
/* 0x0198 */ s32 unk_198[4];
} DemoGt; // size = 0x01A8
#endif