mirror of
https://github.com/zeldaret/tmc
synced 2026-05-23 23:05:38 -04:00
20 lines
278 B
C
20 lines
278 B
C
#ifndef AREA_H
|
|
#define AREA_H
|
|
|
|
#include "global.h"
|
|
|
|
typedef struct {
|
|
u8 areaMetadata;
|
|
u8 locationIndex;
|
|
u8 unk;
|
|
u16 localFlagOffset;
|
|
u8 filler[10];
|
|
u16 field_0x10;
|
|
u8 filler3[7];
|
|
u8 fadeOut;
|
|
u8 filler2[14];
|
|
} Area;
|
|
|
|
extern Area gArea;
|
|
|
|
#endif |