📄 menu_base.h
字号:
//=========== (C) Copyright 1999 Valve, L.L.C. All rights reserved. ===========
//
// The copyright to the contents herein is the property of Valve, L.L.C.
// The contents may be used and/or copied only with the written permission of
// Valve, L.L.C., or in accordance with the terms and conditions stipulated in
// the agreement/contract under which the contents have been supplied.
//
// Purpose:
//
// $Workfile: $
// $Date: $
//
//-----------------------------------------------------------------------------
// $Log: $
//
// $NoKeywords: $
//=============================================================================
#ifndef MENU_BASE_H
#define MENU_BASE_H
#pragma once
class CBasePlayer;
class CMenu;
enum
{
MENU_DEFAULT = 0,
MENU_TEAM,
MENU_CLASS,
// Insert new Menus here
MENU_LAST, // Total Number of menus
};
// Global list of menus
extern CMenu *gMenus[];
//-----------------------------------------------------------------------------
// Purpose: Base Menu Class
//-----------------------------------------------------------------------------
class CMenu
{
public:
CMenu();
virtual void RecalculateMenu( CBaseTFPlayer *pViewer );
virtual void Display( CBaseTFPlayer *pViewer, int allowed = 0xFFFF, int display_time = -1 );
virtual bool Input( CBaseTFPlayer *pViewer, int iInput );
protected:
char m_szMenuString[1024];
};
//-----------------------------------------------------------------------------
// Purpose: Team Menu
//-----------------------------------------------------------------------------
class CMenuTeam : public CMenu
{
public:
CMenuTeam();
virtual void RecalculateMenu( CBaseTFPlayer *pViewer );
virtual bool Input( CBaseTFPlayer *pViewer, int iInput );
};
//-----------------------------------------------------------------------------
// Purpose: Class Menu
//-----------------------------------------------------------------------------
class CMenuClass : public CMenu
{
public:
CMenuClass();
virtual void RecalculateMenu( CBaseTFPlayer *pViewer );
virtual bool Input( CBaseTFPlayer *pViewer, int iInput );
};
#endif // MENU_BASE_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -