mirror of
https://github.com/pret/pokeheartgold.git
synced 2024-12-03 10:40:54 +00:00
21 lines
448 B
C
21 lines
448 B
C
#ifndef POKEHEARTGOLD_MAP_SECTION_H
|
|
#define POKEHEARTGOLD_MAP_SECTION_H
|
|
|
|
#include "global.h"
|
|
|
|
typedef u16 mapsec_t;
|
|
|
|
typedef enum MapsecType {
|
|
MAPSECTYPE_NORMAL,
|
|
MAPSECTYPE_GIFT,
|
|
MAPSECTYPE_EXTERNAL,
|
|
MAPSECTYPE_MAX
|
|
} MapsecType;
|
|
|
|
int sub_02017FAC(int mapsec);
|
|
int sub_02017FCC(int mapsec);
|
|
int sub_02017FE4(MapsecType type, int offset);
|
|
BOOL LocationIsDiamondPearlCompatible(mapsec_t mapsec);
|
|
|
|
#endif // POKEHEARTGOLD_MAP_SECTION_H
|