mirror of
https://github.com/pret/pmd-red.git
synced 2026-08-06 18:53:21 -05:00
9 lines
174 B
C
9 lines
174 B
C
#include "global.h"
|
|
#include "dungeon_map_access.h"
|
|
#include "dungeon_data.h"
|
|
|
|
bool8 IsWaterDungeon(u32 r0)
|
|
{
|
|
return gDungeonWaterType[r0] == DUNGEON_WATER_TYPE_WATER;
|
|
}
|