Shipwright/soh/src/overlays/effects/ovl_Effect_Ss_Dt_Bubble/z_eff_ss_dt_bubble.h

21 lines
515 B
C

#ifndef Z_EFF_SS_DT_BUBBLE_H
#define Z_EFF_SS_DT_BUBBLE_H
#include "ultra64.h"
#include "global.h"
typedef struct {
/* 0x00 */ Vec3f pos;
/* 0x0C */ Vec3f velocity;
/* 0x18 */ Vec3f accel;
/* 0x24 */ Color_RGBA8 primColor;
/* 0x28 */ Color_RGBA8 envColor;
/* 0x2C */ s16 scale;
/* 0x2E */ s16 life;
/* 0x30 */ s16 colorProfile;
/* 0x32 */ s16 randXZ; // randomly moves in the xz plane if true
/* 0x34 */ u8 customColor;
} EffectSsDtBubbleInitParams; // size = 0x3C
#endif