mirror of
https://github.com/zeldaret/tmc
synced 2026-05-24 07:11:07 -04:00
18 lines
239 B
C
18 lines
239 B
C
#ifndef AREA_H
|
|
#define AREA_H
|
|
|
|
#include "global.h"
|
|
|
|
typedef struct {
|
|
u8 areaMetadata;
|
|
u8 locationIndex;
|
|
u8 unk;
|
|
u16 localFlagOffset;
|
|
u8 filler[19];
|
|
u8 fadeOut;
|
|
u8 filler2[14];
|
|
} Area;
|
|
|
|
extern Area gArea;
|
|
|
|
#endif |