1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-31 02:35:46 +01:00

Implement chain lift pieces and reuse

This commit is contained in:
Ted John
2016-09-19 23:09:06 +01:00
parent f14788f74f
commit f68cd430f2
3 changed files with 255 additions and 11 deletions

View File

@@ -150,3 +150,8 @@ sint16 get_height_marker_offset()
{
return 0;
}
bool track_element_is_lift_hill(rct_map_element *trackElement)
{
return trackElement->type & 0x80;
}