summaryrefslogtreecommitdiff
path: root/include/tile_types.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/tile_types.h')
-rw-r--r--include/tile_types.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/tile_types.h b/include/tile_types.h
new file mode 100644
index 0000000..f1bc412
--- /dev/null
+++ b/include/tile_types.h
@@ -0,0 +1,15 @@
+#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);
+// 0x4AF74
+bool8 IsWaterTileset();
+
+#endif