css_enhanced_waf/replay/common/replaylib.cpp
FluorescentCIAAfricanAmerican 3bf9df6b27 1
2020-04-22 12:56:21 -04:00

27 lines
884 B
C++

//========= Copyright Valve Corporation, All rights reserved. ============//
//
//=======================================================================================//
#include "replay/replaylib.h"
#include "replay/replayutils.h"
#include "replay/iclientreplaycontext.h"
// memdbgon must be the last include file in a .cpp file!!!
#include "tier0/memdbgon.h"
//----------------------------------------------------------------------------------------
IClientReplayContext *g_pClientReplayContext = NULL;
//----------------------------------------------------------------------------------------
bool ReplayLib_Init( const char *pGameDir, IClientReplayContext *pClientReplayContext )
{
Replay_SetGameDir( pGameDir );
g_pClientReplayContext = pClientReplayContext;
return true;
}
//----------------------------------------------------------------------------------------