diff options
Diffstat (limited to 'game/client/iconsole.h')
| -rw-r--r-- | game/client/iconsole.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/game/client/iconsole.h b/game/client/iconsole.h new file mode 100644 index 0000000..fad7fcc --- /dev/null +++ b/game/client/iconsole.h @@ -0,0 +1,35 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $Workfile: $ +// $Date: $ +// +//----------------------------------------------------------------------------- +// $Log: $ +// +// $NoKeywords: $ +//=============================================================================// +#if !defined( ICONSOLE_H ) +#define ICONSOLE_H +#ifdef _WIN32 +#pragma once +#endif + +#include <vgui/VGUI.h> + +namespace vgui +{ + class Panel; +} + +abstract_class IConsole +{ +public: + virtual void Create( vgui::VPANEL parent ) = 0; + virtual void Destroy( void ) = 0; +}; + +extern IConsole *console; + +#endif // ICONSOLE_H
\ No newline at end of file |