You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
983 B
43 lines
983 B
5 years ago
|
//========= 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
|