1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-25 15:54:31 +01:00

Remove unused C transfer functions in Tables.cpp

This commit is contained in:
Michael Steenbeek
2017-11-14 11:13:55 +01:00
parent a663ab6cd2
commit 5409dedb7e
2 changed files with 0 additions and 27 deletions

View File

@@ -1426,21 +1426,3 @@ namespace RCT1
return map[sceneryType];
}
}
extern "C"
{
uint8 rct1_get_ride_type(uint8 rideType)
{
return RCT1::GetRideType(rideType);
}
const char * rct1_get_ride_type_object(uint8 rideType)
{
return RCT1::GetRideTypeObject(rideType);
}
const char * rct1_get_vehicle_object(uint8 vehicleType)
{
return RCT1::GetVehicleObject(vehicleType);
}
}

View File

@@ -53,13 +53,4 @@ namespace RCT1
const std::vector<const char *> GetSceneryObjects(uint8 sceneryType);
}
extern "C" {
#endif
uint8 rct1_get_ride_type(uint8 rideType);
const char * rct1_get_ride_type_object(uint8 rideType);
const char * rct1_get_vehicle_object(uint8 vehicleType);
#ifdef __cplusplus
}
#endif