mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-05 00:45:12 -05:00
21 lines
580 B
C
21 lines
580 B
C
#ifndef GUARD_DUNGEON_MAP_H
|
|
#define GUARD_DUNGEON_MAP_H
|
|
|
|
extern bool8 gShowMonsterDotsInDungeonMap;
|
|
extern bool8 gShowDungeonMap;
|
|
|
|
void SetDungeonMapToNotShown(void);
|
|
void OpenDungeonMapFile(void);
|
|
void InitDungeonMap(bool8 a0);
|
|
void CloseDungeonMapFile(void);
|
|
void LoadDungeonMapPalette(void);
|
|
void ShowDungeonMapAtPos(s32 x, s32 y);
|
|
void CopyDungeonMapToVram(void);
|
|
void ShowPlayerDotOnMap(void);
|
|
void ResetMapPlayerDotFrames(void);
|
|
void ShowWholeRevealedDungeonMap(void);
|
|
void UpdateBgTilemapForDungeonMap(bool8 a0);
|
|
void TryResetDungeonMapTilesScheduledForCopy(void);
|
|
|
|
#endif
|