Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
704 B

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