feat(CBaseModelInfo): Update eModelType enum

This commit is contained in:
Yimura 2022-07-03 17:29:50 +02:00
parent e7b43afec3
commit 8d9b6ba576
No known key found for this signature in database
GPG Key ID: 3D8FF4397E768682

View File

@ -4,14 +4,25 @@
enum class eModelType : std::uint8_t
{
UNK_0,
Invalid,
Object,
UNK_2,
UNK_3,
Interior,
Window,
Weapon,
Vehicle,
Ped,
Plant = 129
Destructable,
WorldObject = 33,
Sprinkler = 35,
Unk65 = 65,
EmissiveLOD = 67,
Plant = 129,
LOD = 131,
Unk132 = 132,
Unk133 = 133,
OnlineOnlyPed = 134,
Building = 161,
Unk193 = 193
};
#pragma pack(push, 2)