aboutsummaryrefslogtreecommitdiff
path: root/mp/src/game/client/sdk/vgui/sdkviewport.h
blob: 159da3925e0b810d8449471ea8ab5078c12b60a4 (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 SDKVIEWPORT_H
#define SDKVIEWPORT_H


#include "sdk_shareddefs.h"
#include "baseviewport.h"


using namespace vgui;

namespace vgui 
{
	class Panel;
}

class SDKViewport : public CBaseViewport
{

private:
	DECLARE_CLASS_SIMPLE( SDKViewport, CBaseViewport );

public:

	IViewPortPanel* CreatePanelByName(const char *szPanelName);
	void CreateDefaultPanels( void );

	virtual void ApplySchemeSettings( vgui::IScheme *pScheme );
		
	int GetDeathMessageStartHeight( void );
};


#endif // SDKViewport_H