mirror of
https://github.com/Mr-X-GTA/GTAV-Classes-1.git
synced 2024-12-22 14:37:31 +08:00
fix(Friends): static_assert size check
This commit is contained in:
parent
4570612e8b
commit
9e36400039
@ -9,7 +9,7 @@ public:
|
||||
char m_name[20]; //0x0000
|
||||
char pad_0014[36]; //0x0014
|
||||
uint64_t m_rockstar_id; //0x0038
|
||||
uint8_t unk_0xC0; //0x0040
|
||||
uint8_t unk; //0x0040
|
||||
char pad_0041[3]; //0x0041
|
||||
uint32_t m_friend_state; //0x0044
|
||||
char pad_0048[304]; //0x0048
|
||||
|
@ -8,8 +8,8 @@ class FriendList
|
||||
{
|
||||
public:
|
||||
class FriendInfo m_data[250]; //0x0000
|
||||
}; //Size: 0x1F400
|
||||
static_assert(sizeof(FriendList) == 0x1F400);
|
||||
}; //Size: 0x17700
|
||||
static_assert(sizeof(FriendList) == 0x17700);
|
||||
|
||||
#pragma pack(push, 4)
|
||||
class FriendRegistry
|
||||
|
BIN
gtav.rcnet
BIN
gtav.rcnet
Binary file not shown.
Loading…
Reference in New Issue
Block a user