diff options
author | AnonymousRandomPerson <chenghanngan.us@gmail.com> | 2022-02-20 23:43:06 -0500 |
---|---|---|
committer | AnonymousRandomPerson <chenghanngan.us@gmail.com> | 2022-02-20 23:43:06 -0500 |
commit | 4aafa434a61c07b70e6bc2364ab6f63c7e2c4169 (patch) | |
tree | e44f4620bb443c81b82be3cedaa8e277d92e93cb /include | |
parent | ec6abc684ebc571fc186ca61f1410770ea17fa14 (diff) |
Decomped IsTileGround()
Diffstat (limited to 'include')
-rw-r--r-- | include/tile_types.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/tile_types.h b/include/tile_types.h new file mode 100644 index 0000000..2096201 --- /dev/null +++ b/include/tile_types.h @@ -0,0 +1,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 |