blob: 4e53105080185f5621d473e0f15998775649773f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================
#include "pch_serverbrowser.h"
using namespace vgui;
//-----------------------------------------------------------------------------
// Purpose: Constructor
//-----------------------------------------------------------------------------
CVACBannedConnRefusedDialog::CVACBannedConnRefusedDialog( VPANEL hVParent, const char *name ) : BaseClass( NULL, name )
{
SetParent( hVParent );
SetSize( 480, 220 );
SetSizeable( false );
LoadControlSettings( "servers/VACBannedConnRefusedDialog.res" );
MoveToCenterOfScreen();
}
|