mirror of
https://github.com/rh-hideout/pokeemerald-expansion.git
synced 2026-04-26 02:14:22 -05:00
17 lines
400 B
C
17 lines
400 B
C
#ifndef GUARD_MAP_NAME_POPUP_H
|
|
#define GUARD_MAP_NAME_POPUP_H
|
|
|
|
// Exported type declarations
|
|
|
|
// Exported RAM declarations
|
|
|
|
// Exported ROM declarations
|
|
void HideMapNamePopUpWindow(void);
|
|
void ShowMapNamePopup(void);
|
|
u8 *GetPopUpMapName(u8 *dest, const struct MapHeader *mapHeader);
|
|
|
|
#define MAP_POPUP_STRING_BUFFER_LENGTH 27
|
|
#define MAP_POPUP_PREFIX_BUFFER_LENGTH 6
|
|
|
|
#endif //GUARD_MAP_NAME_POPUP_H
|