summaryrefslogtreecommitdiff
path: root/serverbrowser/SpectateGames.cpp
blob: 32b2999528ce8323bde5967f0c26a16a64a58758 (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
28
29
30
31
32
33
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: 
//
// $NoKeywords: $
//=============================================================================

#include "pch_serverbrowser.h"


CSpectateGames::CSpectateGames( vgui::Panel *parent )
	: CInternetGames( parent, "SpectateGames", eSpectatorServer )
{
}

void CSpectateGames::GetNewServerList()
{
	m_vecServerFilters.AddToTail( MatchMakingKeyValuePair_t( "proxy", "1" ) );
	BaseClass::GetNewServerList();
}

void CSpectateGames::OnPageShow()
{
}

//-----------------------------------------------------------------------------
// Purpose: 
//-----------------------------------------------------------------------------
bool CSpectateGames::CheckTagFilter( gameserveritem_t &server )
{
	return true;
}