This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/src/sc_pointers.hpp

16 lines
320 B
C++
Raw Normal View History

2023-04-14 18:54:07 +02:00
#pragma once
namespace big
{
// needed for serialization of the pointers cache
#pragma pack(push, 1)
struct socialclub_pointers
{
PVOID m_update_presence_attribute_int;
PVOID m_update_presence_attribute_string;
functions::start_get_presence_attributes m_start_get_presence_attributes;
};
#pragma pack(pop)
}