diff options
Diffstat (limited to 'game/client/tfc/vgui/tfcviewport.h')
| -rw-r--r-- | game/client/tfc/vgui/tfcviewport.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/game/client/tfc/vgui/tfcviewport.h b/game/client/tfc/vgui/tfcviewport.h new file mode 100644 index 0000000..625d452 --- /dev/null +++ b/game/client/tfc/vgui/tfcviewport.h @@ -0,0 +1,40 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//=============================================================================// + +#ifndef TFCVIEWPORT_H +#define TFCVIEWPORT_H + + +#include "tfc_shareddefs.h" +#include "baseviewport.h" + + +using namespace vgui; + +namespace vgui +{ + class Panel; +} + +class TFCViewport : public CBaseViewport +{ + +private: + DECLARE_CLASS_SIMPLE( TFCViewport, CBaseViewport ); + +public: + + IViewPortPanel* CreatePanelByName(const char *szPanelName); + void CreateDefaultPanels( void ); + + virtual void ApplySchemeSettings( vgui::IScheme *pScheme ); + + int GetDeathMessageStartHeight( void ); +}; + + +#endif // TFCViewport_H |