diff options
Diffstat (limited to '')
-rw-r--r-- | src/entities/Vehicle.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/entities/Vehicle.h b/src/entities/Vehicle.h index 46e1c57c..00126c31 100644 --- a/src/entities/Vehicle.h +++ b/src/entities/Vehicle.h @@ -62,6 +62,12 @@ uint8 m_extra2; bool IsTrain(void) { return m_vehType == VEHICLE_TYPE_TRAIN; } bool IsHeli(void) { return m_vehType == VEHICLE_TYPE_HELI; } bool IsPlane(void) { return m_vehType == VEHICLE_TYPE_PLANE; } + + static Bool &bWheelsOnlyCheat; + static Bool &bAllDodosCheat; + static Bool &bCheat3; + static Bool &bCheat4; + static Bool &bCheat5; }; static_assert(sizeof(CVehicle) == 0x288, "CVehicle: error"); static_assert(offsetof(CVehicle, m_pCurSurface) == 0x1E0, "CVehicle: error"); |