diff options
author | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-06-13 02:35:26 +0200 |
---|---|---|
committer | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-06-13 02:35:26 +0200 |
commit | 75bca8e31eef877cc6df83146c665f86ad6f8583 (patch) | |
tree | eed79ac6f6bdee9d914e283266bf4b7aee56c6a6 /src/entities/Vehicle.h | |
parent | CameraCreate cosmetic fix (diff) | |
download | re3-75bca8e31eef877cc6df83146c665f86ad6f8583.tar re3-75bca8e31eef877cc6df83146c665f86ad6f8583.tar.gz re3-75bca8e31eef877cc6df83146c665f86ad6f8583.tar.bz2 re3-75bca8e31eef877cc6df83146c665f86ad6f8583.tar.lz re3-75bca8e31eef877cc6df83146c665f86ad6f8583.tar.xz re3-75bca8e31eef877cc6df83146c665f86ad6f8583.tar.zst re3-75bca8e31eef877cc6df83146c665f86ad6f8583.zip |
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"); |