tmc/include/area.h

34 lines
522 B
C

#ifndef AREA_H
#define AREA_H
#include "global.h"
typedef struct {
u8 areaMetadata;
u8 locationIndex;
u8 unk;
u8 regret;
u16 localFlagOffset;
u8 filler[10];
u16 field_0x10;
u16 field_0x12;
u16 field_0x14;
u8 field_0x16;
u8 field_0x17;
u8 field_0x18;
// u8 filler3[7];
u8 fadeOut;
u8 filler2[14];
u8 filler4[0x835];
u32 musicIndex;
u32 pMusicIndex;
u8 filler5[0x20];
u32 unk2;
u32 unk3;
u32 unk4;
} Area;
extern Area gArea;
#endif