summaryrefslogtreecommitdiff
path: root/game/client/tfc/vgui/tfcviewport.h
blob: 625d4520c3cf415299653226655a4e6aa33f4a0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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