1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-30 10:15:36 +01:00

Mass rename constants (#23656)

This commit is contained in:
Michael Steenbeek
2025-01-19 16:59:45 +01:00
committed by GitHub
parent bf413b2ab7
commit be9f27e4f9
270 changed files with 1636 additions and 1640 deletions

View File

@@ -46,13 +46,13 @@ namespace OpenRCT2
namespace OpenRCT2::Scripting
{
static constexpr int32_t OPENRCT2_PLUGIN_API_VERSION = 104;
static constexpr int32_t kPluginApiVersion = 104;
// Versions marking breaking changes.
static constexpr int32_t API_VERSION_33_PEEP_DEPRECATION = 33;
static constexpr int32_t API_VERSION_63_G2_REORDER = 63;
static constexpr int32_t API_VERSION_68_CUSTOM_ACTION_ARGS = 68;
static constexpr int32_t API_VERSION_77_NETWORK_IDS = 77;
static constexpr int32_t kApiVersionPeepDeprecation = 33;
static constexpr int32_t kApiVersionG2Reorder = 63;
static constexpr int32_t kApiVersionCustomActionArgs = 68;
static constexpr int32_t kApiVersionNetworkIDs = 77;
#ifndef DISABLE_NETWORK
class ScSocketBase;