mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2025-12-31 05:48:28 +03:00
28 lines
575 B
C++
28 lines
575 B
C++
//========= Copyright © 1996-2005, 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
|
|
|