mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
46 lines
843 B
C++
46 lines
843 B
C++
#pragma once
|
|
|
|
#include "vector.hpp"
|
|
|
|
#include <cstdint>
|
|
|
|
enum class eModelType : std::uint8_t
|
|
{
|
|
Invalid,
|
|
Object,
|
|
Interior,
|
|
Window,
|
|
Weapon,
|
|
Vehicle,
|
|
Ped,
|
|
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)
|
|
class CBaseModelInfo
|
|
{
|
|
public:
|
|
char pad_0000[24]; //0x0000
|
|
uint32_t m_model_hash; //0x0018
|
|
char pad_001C[20]; //0x001C
|
|
rage::fvector3 m_min_dimensions; //0x0030
|
|
char pad_003C[4]; //0x003C
|
|
rage::fvector3 m_max_dimensions; //0x0040
|
|
char pad_004C[81]; //0x004C
|
|
uint8_t m_model_type; //0x009D
|
|
char pad_009E[6]; //0x009E
|
|
}; //Size: 0x00A4
|
|
static_assert(sizeof(CBaseModelInfo) == 0xA4);
|
|
#pragma pack(pop)
|