mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-06 06:32:56 +01:00
Const all the painted tile elements
Extracted from https://github.com/OpenRCT2/OpenRCT2/pull/7036
This commit is contained in:
committed by
Michał Janiszewski
parent
76a997aa18
commit
3f76bd214f
@@ -81,13 +81,13 @@ LocationXY16 gMapSelectPositionB;
|
||||
LocationXYZ16 gMapSelectArrowPosition;
|
||||
uint8 gMapSelectArrowDirection;
|
||||
|
||||
void entrance_paint(paint_session * session, uint8 direction, int height, rct_tile_element *tile_element) { }
|
||||
void banner_paint(paint_session * session, uint8 direction, int height, rct_tile_element *tile_element) { }
|
||||
void surface_paint(paint_session * session, uint8 direction, uint16 height, rct_tile_element *tileElement) { }
|
||||
void path_paint(paint_session * session, uint8 direction, uint16 height, rct_tile_element *tileElement) { }
|
||||
void scenery_paint(paint_session * session, uint8 direction, int height, rct_tile_element *tileElement) { }
|
||||
void fence_paint(paint_session * session, uint8 direction, int height, rct_tile_element *tileElement) { }
|
||||
void large_scenery_paint(paint_session * session, uint8 direction, uint16 height, rct_tile_element *tileElement) { }
|
||||
void entrance_paint(paint_session * session, uint8 direction, int height, const rct_tile_element * tile_element) {}
|
||||
void banner_paint(paint_session * session, uint8 direction, int height, const rct_tile_element * tile_element) {}
|
||||
void surface_paint(paint_session * session, uint8 direction, uint16 height, const rct_tile_element * tileElement) {}
|
||||
void path_paint(paint_session * session, uint8 direction, uint16 height, const rct_tile_element * tileElement) {}
|
||||
void scenery_paint(paint_session * session, uint8 direction, int height, const rct_tile_element * tileElement) {}
|
||||
void fence_paint(paint_session * session, uint8 direction, int height, const rct_tile_element * tileElement) {}
|
||||
void large_scenery_paint(paint_session * session, uint8 direction, uint16 height, const rct_tile_element * tileElement) {}
|
||||
|
||||
Ride *get_ride(int index) {
|
||||
if (index < 0 || index >= MAX_RIDES) {
|
||||
|
||||
Reference in New Issue
Block a user