mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
21 lines
364 B
C++
21 lines
364 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#include "CEntityDrawHandler.hpp"
|
|
|
|
namespace rage
|
|
{
|
|
#pragma pack(push, 4)
|
|
class CPedDrawHandler : public CEntityDrawHandler
|
|
{
|
|
public:
|
|
uint64_t qword30;
|
|
uint64_t qword38;
|
|
char gap40[752];
|
|
uint32_t dword330;
|
|
};
|
|
static_assert(sizeof(CPedDrawHandler) == 0x330);
|
|
#pragma pack(pop)
|
|
}
|