OpenRCT2/src/openrct2/ride/CableLift.h

23 lines
818 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"
2018-06-22 23:14:18 +02:00
rct_vehicle* cable_lift_segment_create(
2019-01-12 11:11:55 +01:00
ride_id_t rideIndex, int32_t x, int32_t y, int32_t z, int32_t direction, uint16_t var_44, int32_t remaining_distance,
2018-06-22 23:14:18 +02:00
bool head);
void cable_lift_update(rct_vehicle* vehicle);
int32_t cable_lift_update_track_motion(rct_vehicle* cableLift);
#endif