Temp-Classes/fwEntity.hpp
Davide Beatrici b2c1392758 fix(fwEntity): Remove "class" specifier for rage::fvector3
fwEntity.hpp:29:21: error: typedef 'fvector3' cannot be referenced with a class specifier
        class rage::fvector3 m_right //0x0060
                    ^
vector.hpp:12:28: note: declared here
    typedef vector3<float> fvector3
                           ^
2022-06-01 08:47:43 +02:00

43 lines
1.2 KiB
C++

#pragma once
#include "CBaseModelInfo.hpp"
#include "CNavigation.hpp"
#include "fwDrawData.hpp"
#include "netObject.hpp"
#include <cstdint>
namespace rage
{
#pragma pack(push, 4)
class fwEntity
{
public:
char pad_0000[32]; //0x0000
class CBaseModelInfo *m_model_info; //0x0020
char pad_0028[1]; //0x0028
int8_t m_entity_type; //0x0029
char pad_002A[2]; //0x002A
uint8_t m_invisible; //0x002C
char pad_002D[3]; //0x002D
class CNavigation *m_navigation; //0x0030
char pad_0038[16]; //0x0038
class rage::fwDrawData *m_draw_data; //0x0048
char pad_0050[16]; //0x0050
rage::fvector3 m_right; //0x0060
char pad_006C[4]; //0x006C
rage::fvector3 m_forward; //0x0070
char pad_007C[4]; //0x007C
rage::fvector3 m_up; //0x0080
char pad_008C[4]; //0x008C
rage::fvector3 m_position; //0x0090
char pad_009C[52]; //0x009C
class rage::netObject *m_net_object; //0x00D0
char pad_00D8[176]; //0x00D8
uint32_t m_damage_bits; //0x0188
}; //Size: 0x018C
static_assert(sizeof(fwEntity) == 0x18C);
#pragma pack(pop)
}