OpenRCT2/src/ride/track_paint.h

12 lines
398 B
C
Raw Normal View History

#ifndef _TRACK_PAINT_H
#define _TRACK_PAINT_H
#include "../common.h"
typedef void (*TRACK_PAINT_FUNCTION)(uint8 rideIndex, uint8 trackSequence, uint8 direction, int height, rct_map_element* mapElement);
extern TRACK_PAINT_FUNCTION* top_spin_track_paint_functions[];
extern TRACK_PAINT_FUNCTION* shop_track_paint_functions[];
2015-12-19 01:06:31 +01:00
extern TRACK_PAINT_FUNCTION* facility_track_paint_functions[];
#endif