diff options
author | aap <aap@papnet.eu> | 2019-07-31 23:57:18 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-07-31 23:57:18 +0200 |
commit | 78c15c4828a540fd6ad4f1816b8cc9610409f740 (patch) | |
tree | 800fc93cb0226accb1806a8104bc3eccfb4f71f7 /src/modelinfo/VehicleModelInfo.h | |
parent | 5118fd66dadbdc4ef5c83dfdf05df52ee7c5ef1a (diff) |
implemented CPlane
Diffstat (limited to 'src/modelinfo/VehicleModelInfo.h')
-rw-r--r-- | src/modelinfo/VehicleModelInfo.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/modelinfo/VehicleModelInfo.h b/src/modelinfo/VehicleModelInfo.h index b5399d44..1a6d6a55 100644 --- a/src/modelinfo/VehicleModelInfo.h +++ b/src/modelinfo/VehicleModelInfo.h @@ -57,7 +57,10 @@ public: uint8 m_lastColour2; char m_gameName[32]; int32 m_vehicleType; - int32 m_wheelId; + union { + int32 m_wheelId; + int32 m_planeLodId; + }; float m_wheelScale; int32 m_numDoors; int32 m_handlingId; |