feat(CBaseModelInfo): Update eModelType enum

This commit is contained in:
Yimura 2022-07-03 17:29:50 +02:00
parent ef4cfaf14b
commit 3c1235f5db

View File

@ -4,14 +4,25 @@
enum class eModelType : std::uint8_t enum class eModelType : std::uint8_t
{ {
UNK_0, Invalid,
Object, Object,
UNK_2, Interior,
UNK_3, Window,
Weapon, Weapon,
Vehicle, Vehicle,
Ped, 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) #pragma pack(push, 2)