mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
28 lines
562 B
C
28 lines
562 B
C
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef CONTROLLERDIALOG_H
|
||
|
#define CONTROLLERDIALOG_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include "OptionsDialog.h"
|
||
|
|
||
|
class CControllerDialog : public COptionsDialogXbox
|
||
|
{
|
||
|
DECLARE_CLASS_SIMPLE( CControllerDialog, COptionsDialogXbox );
|
||
|
|
||
|
public:
|
||
|
CControllerDialog(vgui::Panel *parent);
|
||
|
|
||
|
virtual void ApplySchemeSettings( vgui::IScheme *pScheme );
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // CONTROLLERDIALOG_H
|
||
|
|