mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-17 23:07:26 +08:00
12 lines
313 B
C++
12 lines
313 B
C++
#include "hooking.hpp"
|
|
#include "services/player_service.hpp"
|
|
|
|
namespace big
|
|
{
|
|
void hooks::network_player_mgr_shutdown(CNetworkPlayerMgr* _this)
|
|
{
|
|
g_player_service->do_cleanup();
|
|
|
|
return g_hooking->m_network_player_mgr_shutdown_hook.get_original<decltype(&hooks::network_player_mgr_shutdown)>()(_this);
|
|
}
|
|
} |