mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2025-01-03 16:13:21 +08:00
feat(CBaseModelInfo): Added min/max dimensions
This commit is contained in:
parent
39f6481526
commit
1048320b4b
@ -1,5 +1,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include "vector.hpp"
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
||||||
enum class eModelType : std::uint8_t
|
enum class eModelType : std::uint8_t
|
||||||
@ -31,8 +33,12 @@ class CBaseModelInfo
|
|||||||
public:
|
public:
|
||||||
char pad_0000[24]; //0x0000
|
char pad_0000[24]; //0x0000
|
||||||
uint32_t m_model_hash; //0x0018
|
uint32_t m_model_hash; //0x0018
|
||||||
char pad_001C[129]; //0x001C
|
char pad_001C[20]; //0x001C
|
||||||
eModelType m_model_type; //0x009D
|
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
|
char pad_009E[6]; //0x009E
|
||||||
}; //Size: 0x00A4
|
}; //Size: 0x00A4
|
||||||
static_assert(sizeof(CBaseModelInfo) == 0xA4);
|
static_assert(sizeof(CBaseModelInfo) == 0xA4);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user