OpenRCT2/src/openrct2/ride/CableLift.h

20 lines
691 B
C
Raw Normal View History

/*****************************************************************************
* Copyright (c) 2014-2019 OpenRCT2 developers
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
#ifndef _CABLE_LIFT_H_
#define _CABLE_LIFT_H_
#include "../common.h"
2017-10-11 23:32:15 +02:00
#include "Vehicle.h"
2020-01-19 16:53:17 +01:00
Vehicle* cable_lift_segment_create(
Ride& ride, int32_t x, int32_t y, int32_t z, int32_t direction, uint16_t var_44, int32_t remaining_distance, bool head);
#endif