summaryrefslogtreecommitdiff
path: root/include/tile_types.h
blob: 2096201c6d52858ed94f3182c031fa24813662d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef GUARD_TILE_TYPES_H
#define GUARD_TILE_TYPES_H

#include "map.h"

#define DUNGEON_WATER_TYPE_NONE 0
#define DUNGEON_WATER_TYPE_LAVA 1
#define DUNGEON_WATER_TYPE_WATER 2

// 0x4AF20
bool8 IsTileGround(struct MapTile* tile);

#endif