1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-26 08:14:38 +01:00

Add generated Multi dimension RC

This commit is contained in:
Michał Janiszewski
2016-10-09 14:41:10 +02:00
parent 8e4f9003b3
commit ea485d86dd
3 changed files with 9444 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -6296,7 +6296,7 @@ const TRACK_PAINT_FUNCTION_GETTER RideTypeTrackPaintFunctions[91] = {
0, // RIDE_TYPE_WOODEN_ROLLER_COASTER
get_track_paint_function_side_friction_rc, // RIDE_TYPE_SIDE_FRICTION_ROLLER_COASTER
get_track_paint_function_wild_mouse, // RIDE_TYPE_WILD_MOUSE
0, // RIDE_TYPE_MULTI_DIMENSION_ROLLER_COASTER
get_track_paint_function_multi_dimension_rc, // RIDE_TYPE_MULTI_DIMENSION_ROLLER_COASTER
0, // RIDE_TYPE_MULTI_DIMENSION_ROLLER_COASTER_ALT
0, // RIDE_TYPE_FLYING_ROLLER_COASTER
0, // RIDE_TYPE_FLYING_ROLLER_COASTER_ALT

View File

@@ -305,6 +305,7 @@ TRACK_PAINT_FUNCTION get_track_paint_function_ghost_train(int trackType, int dir
TRACK_PAINT_FUNCTION get_track_paint_function_twister_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_side_friction_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_wild_mouse(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_multi_dimension_rc(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_virginia_reel(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_splash_boats(int trackType, int direction);
TRACK_PAINT_FUNCTION get_track_paint_function_mini_helicopters(int trackType, int direction);