OpenRCT2/src/openrct2/ride/station.h

30 lines
1.0 KiB
C
Raw Normal View History

#pragma region Copyright (c) 2014-2017 OpenRCT2 Developers
2014-11-02 04:37:56 +01:00
/*****************************************************************************
* 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
2014-11-02 04:37:56 +01:00
*
* 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
2014-11-02 04:37:56 +01:00
*****************************************************************************/
#pragma endregion
2014-11-02 04:37:56 +01:00
#ifndef _RIDE_STATION_H_
#define _RIDE_STATION_H_
#include "../common.h"
#include "../world/map.h"
#include "ride.h"
#define MAX_STATIONS 4
2017-01-04 22:17:08 +01:00
void ride_update_station(rct_ride *ride, sint32 stationIndex);
sint32 ride_get_first_valid_station_exit(rct_ride * ride);
2014-11-02 04:37:56 +01:00
2015-12-21 05:03:37 +01:00
#endif