GTAV-Classes-private/ped/CPedInventory.hpp
2024-09-25 12:11:17 +00:00

38 lines
744 B
C++

#pragma once
#include <cstdint>
#include "../base/atRTTI.hpp"
class CPed;
#pragma pack(push, 8)
class CPedInventory
{
public:
DEFINE_RAGE_RTTI(CPedInventory);
uint64_t unk_0008;
CPed* m_ped; //0x0010
uint64_t unk_0018;
uint32_t unk_0020;
uint64_t unk_0028;
uint64_t unk_0030;
uint32_t unk_0038;
char pad_003C[4];
char unk_0040;
char pad_0041[7];
uint64_t unk_0048;
uint32_t unk_0050;
uint64_t unk_0058;
uint64_t unk_0060;
uint32_t unk_0068;
char pad_006C[4];
char unk_0070;
char pad_0071[7];
bool m_infinite_ammo : 1;
bool m_infinite_clip : 1;
char pad_0079[7];
uint64_t unk_0080;
};
static_assert(sizeof(CPedInventory) == 0x88);
#pragma pack(pop)