diff options
Diffstat (limited to 'structs/map.h')
-rw-r--r-- | structs/map.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/structs/map.h b/structs/map.h new file mode 100644 index 00000000..18b8c1d1 --- /dev/null +++ b/structs/map.h @@ -0,0 +1,22 @@ +#ifndef POKEDIAMOND_MAP_H +#define POKEDIAMOND_MAP_H + +typedef struct { + u8 MapAreaData; + u8 field_0x1; + u16 Matrix; + u16 MapScripts; + u16 MapLevelScripts; + u16 MapTexts; + u16 DayMusic; + u16 NightMusic; + u16 WildPokemonData; + u16 MapEvents; + u16 MapName; + u8 WeatherType; + u8 field_0x15; + u8 field_0x16; + u8 field_0x17; +} MapHeader; + +#endif //POKEDIAMOND_MAP_H |