Files
marohook/Andromeda-CS2-Base/Andromeda-CS2-Base/CS2/Hook/Hook_OnClientOutput.cpp
T
2025-10-20 14:00:35 +03:00

13 lines
356 B
C++

#include "Hook_OnClientOutput.hpp"
#include <AndromedaClient/CAndromedaClient.hpp>
#include <AndromedaClient/Render/CRenderStackSystem.hpp>
auto Hook_OnClientOutput( void* a1 , void* a2 , void* a3 , void* a4 ) -> void
{
GetAndromedaClient()->OnClientOutput();
GetRenderStackSystem()->OnClientOutput();
return OnClientOutput_o( a1 , a2 , a3 , a4 );
}