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.
41 lines
1.3 KiB
41 lines
1.3 KiB
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
//=============================================================================// |
|
|
|
#include "OptionsSubGame.h" |
|
#include "BasePanel.h" |
|
|
|
// memdbgon must be the last include file in a .cpp file!!! |
|
#include "tier0/memdbgon.h" |
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: Constructor |
|
//----------------------------------------------------------------------------- |
|
COptionsSubGame::COptionsSubGame( vgui::Panel *parent, const char *name ) : BaseClass( parent, name ) |
|
{ |
|
SetDeleteSelfOnClose( true ); |
|
LoadControlSettings( "Resource/OptionsSubGame.res" ); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: Destructor |
|
//----------------------------------------------------------------------------- |
|
COptionsSubGame::~COptionsSubGame() |
|
{ |
|
} |
|
|
|
void COptionsSubGame::OnClose( void ) |
|
{ |
|
BasePanel()->RunCloseAnimation( "CloseOptionsSubGame" ); |
|
BaseClass::OnClose(); |
|
} |
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: |
|
//----------------------------------------------------------------------------- |
|
void COptionsSubGame::OnCommand( const char *command ) |
|
{ |
|
BaseClass::OnCommand( command ); |
|
}
|
|
|