mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-17 14:07:48 +00:00
1
This commit is contained in:
@@ -0,0 +1,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
|
||||
Reference in New Issue
Block a user