1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 12:54:51 +00:00
oot/include/z64effect.h

19 lines
537 B
C
Raw Normal View History

2020-03-17 04:31:30 +00:00
#ifndef _Z64EFFECT_H_
#define _Z64EFFECT_H_
#include <color.h>
2020-03-22 21:50:11 +00:00
// gz has trail related structs but they seem to be different in dbg
typedef struct {
2020-03-17 04:31:30 +00:00
/* 0x0000 */ char unk_00[0x184];
/* 0x0184 */ Color_RGBA8 p1Start;
/* 0x0188 */ Color_RGBA8 p2Start;
/* 0x018C */ Color_RGBA8 p1End;
/* 0x0190 */ Color_RGBA8 p2End;
2020-03-22 21:50:11 +00:00
/* 0x0194 */ u32 unk_194; // these are proably bytes
2020-03-17 04:31:30 +00:00
/* 0x0198 */ u32 unk_198;
/* 0x019C */ u32 unk_19C;
/* 0x01A0 */
2020-03-22 21:50:11 +00:00
} TrailEffect; // size = unk
2020-03-17 04:31:30 +00:00
#endif