Shipwright/soh/src/overlays/actors/ovl_Demo_Ext/z_demo_ext.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

27 lines
651 B
C

#ifndef Z_DEMO_EXT_H
#define Z_DEMO_EXT_H
#include "ultra64.h"
#include "global.h"
struct DemoExt;
typedef void (*DemoExtActionFunc)(struct DemoExt*, GlobalContext*);
typedef void (*DemoExtDrawFunc)(Actor*, GlobalContext*);
typedef struct DemoExt {
/* 0x0000 */ Actor actor;
/* 0x014C */ s32 action;
/* 0x014C */ s32 drawMode;
/* 0x0154 */ s32 previousCsAction;
/* 0x015E */ s16 scrollIncr[4];
/* 0x0160 */ s16 curScroll[4];
/* 0x0168 */ s16 rotationPitch;
/* 0x016C */ f32 alphaTimer;
/* 0x0170 */ s32 primAlpha;
/* 0x0174 */ s32 envAlpha;
/* 0x0178 */ Vec3f scale;
} DemoExt; // size = 0x0184
#endif