mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
Merge branch 'master' of github.com:Yimura/GTAV-Classes
This commit is contained in:
commit
9f6df5ee29
@ -15,6 +15,7 @@ namespace rage
|
||||
static_assert(sizeof(nonPhysicalPlayerDataBase) == 0x8);
|
||||
}
|
||||
|
||||
#pragma pack(push, 4)
|
||||
class CNonPhysicalPlayerData : public rage::nonPhysicalPlayerDataBase
|
||||
{
|
||||
public:
|
||||
@ -23,3 +24,4 @@ public:
|
||||
rage::fvector3 m_position; //0x0010
|
||||
}; //Size: 0x001C
|
||||
static_assert(sizeof(CNonPhysicalPlayerData) == 0x1C);
|
||||
#pragma pack(pop)
|
||||
|
@ -6,7 +6,7 @@ namespace rage
|
||||
union vector3
|
||||
{
|
||||
T data[3];
|
||||
struct {T x, y, z};
|
||||
struct { T x, y, z; };
|
||||
};
|
||||
|
||||
typedef vector3<float> fvector3;
|
||||
|
Loading…
Reference in New Issue
Block a user