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