mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-18 04:23:20 +01:00
13 lines
272 B
C
13 lines
272 B
C
#include "cheats.h"
|
|
|
|
bool gCheatsSandboxMode = false;
|
|
bool gCheatsDisableClearanceChecks = false;
|
|
bool gCheatsDisableSupportLimits = false;
|
|
|
|
void cheats_reset()
|
|
{
|
|
gCheatsSandboxMode = false;
|
|
gCheatsDisableClearanceChecks = false;
|
|
gCheatsDisableSupportLimits = false;
|
|
}
|