mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-26 00:04:43 +01:00
32 lines
1.5 KiB
C
32 lines
1.5 KiB
C
#pragma region Copyright (c) 2014-2016 OpenRCT2 Developers
|
|
/*****************************************************************************
|
|
* OpenRCT2, an open source clone of Roller Coaster Tycoon 2.
|
|
*
|
|
* OpenRCT2 is the work of many authors, a full list can be found in contributors.md
|
|
* For more information, visit https://github.com/OpenRCT2/OpenRCT2
|
|
*
|
|
* OpenRCT2 is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* A full copy of the GNU General Public License can be found in licence.txt
|
|
*****************************************************************************/
|
|
#pragma endregion
|
|
|
|
#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);
|
|
typedef TRACK_PAINT_FUNCTION (*TRACK_PAINT_FUNCTION_GETTER)(int trackType, int direction);
|
|
|
|
TRACK_PAINT_FUNCTION get_track_paint_function_maze(int trackType, int direction);
|
|
TRACK_PAINT_FUNCTION get_track_paint_function_topspin(int trackType, int direction);
|
|
TRACK_PAINT_FUNCTION get_track_paint_function_shop(int trackType, int direction);
|
|
TRACK_PAINT_FUNCTION get_track_paint_function_facility(int trackType, int direction);
|
|
TRACK_PAINT_FUNCTION get_track_paint_function_50_52_53_54(int trackType, int direction);
|
|
|
|
#endif
|