1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Add generated LIM launched RC

This commit is contained in:
Michał Janiszewski
2016-10-09 15:23:04 +02:00
parent b2c068906d
commit 04782c257f
3 changed files with 7193 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -6331,7 +6331,7 @@ const TRACK_PAINT_FUNCTION_GETTER RideTypeTrackPaintFunctions[91] = {
get_track_paint_function_mini_rc, // RIDE_TYPE_MINI_ROLLER_COASTER
get_track_paint_function_mine_ride, // RIDE_TYPE_MINE_RIDE
0, // RIDE_TYPE_59
0, // RIDE_TYPE_LIM_LAUNCHED_ROLLER_COASTER
get_track_paint_function_lim_launched_rc, // RIDE_TYPE_LIM_LAUNCHED_ROLLER_COASTER
};
const track_descriptor gTrackDescriptors[142] = {

View File

@@ -331,5 +331,6 @@ TRACK_PAINT_FUNCTION get_track_paint_function_enterprise(int trackType, int dire
TRACK_PAINT_FUNCTION get_track_paint_function_inverted_impulse_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_mini_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_mine_ride(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_lim_launched_rc(int trackType, int direction);
#endif