feat(eModelType): Added Object, Weapon & Plant

This commit is contained in:
Yimura 2022-05-22 16:10:07 +02:00
parent f27b0ed16a
commit 49916757df
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682

View File

@ -3,12 +3,13 @@
enum class eModelType : std::uint8_t enum class eModelType : std::uint8_t
{ {
UNK_0, UNK_0,
UNK_1, Object,
UNK_2, UNK_2,
UNK_3, UNK_3,
UNK_4, Weapon,
Vehicle, Vehicle,
Ped, Ped,
Plant = 129
}; };
#pragma pack(push, 2) #pragma pack(push, 2)