mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2025-12-31 05:48:28 +03:00
26 lines
686 B
C++
26 lines
686 B
C++
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================//
|
|
|
|
#include "BasePanel.h"
|
|
#include "ControllerDialog.h"
|
|
|
|
using namespace vgui;
|
|
|
|
// memdbgon must be the last include file in a .cpp file!!!
|
|
#include <tier0/memdbgon.h>
|
|
|
|
|
|
CControllerDialog::CControllerDialog( vgui::Panel *parent ) : BaseClass( parent, true ) // TRUE second param says we want the controller options
|
|
{
|
|
}
|
|
|
|
void CControllerDialog::ApplySchemeSettings( vgui::IScheme *pScheme )
|
|
{
|
|
BaseClass::ApplySchemeSettings( pScheme );
|
|
|
|
SetControlString( "TitleLabel", "#GameUI_Controller" );
|
|
}
|