13 lines
356 B
C++
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 );
|
|
}
|