mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
feat(CBaseModelInfo): Added model_type
This commit is contained in:
parent
e1a9ca789c
commit
34ef4b8d39
@ -1,9 +1,25 @@
|
||||
#pragma once
|
||||
|
||||
enum class eModelType
|
||||
{
|
||||
UNK_0,
|
||||
UNK_1,
|
||||
UNK_2,
|
||||
UNK_3,
|
||||
UNK_4,
|
||||
Vehicle,
|
||||
Ped,
|
||||
};
|
||||
|
||||
#pragma pack(push, 2)
|
||||
class CBaseModelInfo
|
||||
{
|
||||
public:
|
||||
char pad_0000[24]; //0x0000
|
||||
uint32_t m_model_hash; //0x0018
|
||||
}; //Size: 0x001C
|
||||
static_assert(sizeof(CBaseModelInfo) == 0x1C);
|
||||
char pad_001C[129]; //0x001C
|
||||
eModelType m_model_type; //0x009D
|
||||
char pad_009E[6]; //0x009E
|
||||
}; //Size: 0x00A4
|
||||
static_assert(sizeof(CBaseModelInfo) == 0xA4);
|
||||
#pragma pack(pop)
|
||||
|
Loading…
Reference in New Issue
Block a user