Files
csgo-2018-source/serverbrowser/ServerContextMenu.h

35 lines
857 B
C
Raw Normal View History

2021-07-24 21:11:47 -07:00
//========= Copyright <20> 1996-2001, Valve LLC, All rights reserved. ============
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================
#ifndef SERVERCONTEXTMENU_H
#define SERVERCONTEXTMENU_H
#ifdef _WIN32
#pragma once
#endif
//-----------------------------------------------------------------------------
// Purpose: Basic right-click context menu for servers
//-----------------------------------------------------------------------------
class CServerContextMenu : public vgui::Menu
{
public:
CServerContextMenu(vgui::Panel *parent);
~CServerContextMenu();
// call this to Activate the menu
void ShowMenu(
vgui::Panel *target,
unsigned int serverID,
bool showConnect,
bool showViewGameInfo,
bool showRefresh,
bool showAddToFavorites);
};
#endif // SERVERCONTEXTMENU_H