2019-03-21 20:18:31 +01:00
|
|
|
#pragma once
|
|
|
|
#include "common.hpp"
|
|
|
|
#include "gta/fwddec.hpp"
|
|
|
|
#include "gta/enums.hpp"
|
|
|
|
#include "function_types.hpp"
|
|
|
|
|
|
|
|
namespace big
|
|
|
|
{
|
|
|
|
class pointers
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit pointers();
|
|
|
|
~pointers();
|
|
|
|
public:
|
|
|
|
HWND m_hwnd{};
|
|
|
|
|
|
|
|
eGameState *m_game_state{};
|
|
|
|
bool *m_is_session_started{};
|
|
|
|
|
|
|
|
CPedFactory **m_ped_factory{};
|
|
|
|
CNetworkPlayerMgr **m_network_player_mgr{};
|
|
|
|
|
|
|
|
rage::scrNativeRegistrationTable *m_native_registration_table{};
|
|
|
|
functions::get_native_handler_t m_get_native_handler{};
|
|
|
|
functions::fix_vectors_t m_fix_vectors{};
|
|
|
|
|
|
|
|
rage::atArray<GtaThread*> *m_script_threads{};
|
|
|
|
rage::scrProgramTable *m_script_program_table{};
|
|
|
|
functions::run_script_threads_t m_run_script_threads{};
|
|
|
|
std::int64_t **m_script_globals{};
|
|
|
|
|
|
|
|
CGameScriptHandlerMgr **m_script_handler_mgr{};
|
|
|
|
|
|
|
|
IDXGISwapChain **m_swapchain{};
|
2020-02-22 18:37:42 -05:00
|
|
|
|
|
|
|
PVOID m_model_spawn_bypass;
|
2020-12-26 17:35:05 +01:00
|
|
|
|
|
|
|
functions::sync_local_time_t* m_sync_local_time{};
|
2019-03-21 20:18:31 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
inline pointers *g_pointers{};
|
|
|
|
}
|