34 lines
801 B
C++
34 lines
801 B
C++
![]() |
//========= Copyright <20> 1996-2001, Valve LLC, 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;
|
|||
|
}
|
|||
|
|