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

add ride track functions, for window ride branch

This commit is contained in:
IntelOrca
2014-08-31 15:40:08 +01:00
parent ea481d5033
commit 2cfb2908de
4 changed files with 94 additions and 3 deletions

View File

@@ -21,6 +21,7 @@
#ifndef _RIDE_H_
#define _RIDE_H_
#include "map.h"
#include "rct2.h"
#include "string_ids.h"
@@ -381,5 +382,8 @@ void ride_init_all();
void reset_all_ride_build_dates();
void ride_update_favourited_stat();
void ride_check_all_reachable();
rct_map_element *sub_6CAF80(int rideIndex, int *outX, int *outY);
rct_map_element *ride_find_track_gap(rct_map_element *startTrackElement, int *outX, int *outY);
int ride_try_construct(rct_map_element *trackMapElement);
#endif