mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 22:47:32 +08:00
20 lines
316 B
C++
20 lines
316 B
C++
#pragma once
|
|
|
|
#include "fwEntity.hpp"
|
|
|
|
#include <cstdint>
|
|
|
|
namespace rage
|
|
{
|
|
class CEntity : public rage::fwEntity
|
|
{
|
|
public:
|
|
char gapB9[7];
|
|
uint32_t dwordC0;
|
|
uint32_t dwordC4;
|
|
uint32_t dwordC8;
|
|
uint32_t dwordCC;
|
|
};
|
|
static_assert(sizeof(CEntity) == 0xD0);
|
|
}
|