2022-02-18 17:17:34 +08:00
|
|
|
#pragma once
|
2022-06-01 13:49:36 +08:00
|
|
|
|
2022-07-30 00:00:22 +08:00
|
|
|
#include "socialclub/FriendInfo.hpp"
|
2022-02-18 17:17:34 +08:00
|
|
|
|
2022-06-01 13:49:36 +08:00
|
|
|
#include <cstdint>
|
|
|
|
|
2022-02-18 17:17:34 +08:00
|
|
|
class FriendList
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
class FriendInfo m_data[250]; //0x0000
|
2022-07-27 18:30:38 +08:00
|
|
|
}; //Size: 0x17700
|
|
|
|
static_assert(sizeof(FriendList) == 0x17700);
|
2022-02-18 17:17:34 +08:00
|
|
|
|
|
|
|
#pragma pack(push, 4)
|
|
|
|
class FriendRegistry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
uint32_t m_friend_count; //0x0000
|
|
|
|
char pad_0004[8]; //0x0004
|
|
|
|
class FriendList *m_friends_list; //0x000C
|
|
|
|
}; //Size: 0x0014
|
|
|
|
static_assert(sizeof(FriendRegistry) == 0x14);
|
|
|
|
#pragma pack(pop)
|