summaryrefslogtreecommitdiff
path: root/replay/common/replaylib.cpp
blob: 87a87b02a2d7b2f7de89a52d0845db0febb619cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//========= 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;
}

//----------------------------------------------------------------------------------------