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/script_global.cpp

13 lines
226 B
C++

#include "script_global.hpp"
#include "common.hpp"
#include "pointers.hpp"
namespace big
{
void* script_global::get() const
{
return g_pointers->m_gta.m_script_globals[m_index >> 0x12 & 0x3F] + (m_index & 0x3FFFF);
}
}