2022-01-28 07:02:15 +08:00
|
|
|
#pragma once
|
2022-06-01 13:49:36 +08:00
|
|
|
|
2022-01-28 08:15:26 +08:00
|
|
|
#include "vector.hpp"
|
2022-01-28 07:02:15 +08:00
|
|
|
|
2022-06-01 13:49:36 +08:00
|
|
|
#include <cstdint>
|
|
|
|
|
2022-01-28 07:02:15 +08:00
|
|
|
namespace rage
|
|
|
|
{
|
|
|
|
class nonPhysicalPlayerDataBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~nonPhysicalPlayerDataBase();
|
|
|
|
virtual void _0x08();
|
|
|
|
virtual void _0x10();
|
|
|
|
virtual void _0x18();
|
|
|
|
virtual void log();
|
|
|
|
}; //Size: 0x0008
|
|
|
|
static_assert(sizeof(nonPhysicalPlayerDataBase) == 0x8);
|
|
|
|
}
|
|
|
|
|
2022-01-30 04:34:01 +08:00
|
|
|
#pragma pack(push, 4)
|
2022-01-28 07:02:15 +08:00
|
|
|
class CNonPhysicalPlayerData : public rage::nonPhysicalPlayerDataBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int32_t m_bubble_id; //0x0008
|
|
|
|
int32_t m_player_id; //0x000C
|
2022-01-28 08:15:26 +08:00
|
|
|
rage::fvector3 m_position; //0x0010
|
2022-01-28 07:02:15 +08:00
|
|
|
}; //Size: 0x001C
|
|
|
|
static_assert(sizeof(CNonPhysicalPlayerData) == 0x1C);
|
2022-01-30 04:34:01 +08:00
|
|
|
#pragma pack(pop)
|