1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-28 17:24:47 +01:00

Create footpath_get_edges()

This commit is contained in:
Michael Steenbeek
2018-02-06 10:05:48 +01:00
parent 688577375f
commit b78a744b8e
3 changed files with 9 additions and 2 deletions

View File

@@ -2273,3 +2273,8 @@ rct_footpath_entry *get_footpath_entry(sint32 entryIndex)
{
return gFootpathEntries[entryIndex];
}
uint8 footpath_get_edges(const rct_tile_element * element)
{
return element->properties.path.edges & 0xF;
}