blob: 4d369c3dd2289c80e63ea49b5c3f4216974063c0 (
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
41
42
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef TFCCLASSMENU_H
#define TFCCLASSMENU_H
#ifdef _WIN32
#pragma once
#endif
#include <classmenu.h>
#include <commandpanel.h>
#include <vgui_controls/EditablePanel.h>
#include <filesystem.h>
#include "tfc_shareddefs.h"
#include "cbase.h"
#include "tfc_gamerules.h"
#include "vgui_controls/ImagePanel.h"
//-----------------------------------------------------------------------------
// Purpose: Draws the Terrorist class menu
//-----------------------------------------------------------------------------
class CTFCClassMenu : public CClassMenu
{
private:
DECLARE_CLASS_SIMPLE( CTFCClassMenu, CClassMenu );
public:
CTFCClassMenu::CTFCClassMenu(IViewPort *pViewPort);
const char *GetName( void );
void ShowPanel(bool bShow);
void Update();
};
#endif // TFCCLASSMENU_H
|