Files
csgo-2018-source/serverbrowser/ServerContextMenu.h
KittenPopo c2130ba4e9 uid issue
2021-07-24 21:11:47 -07:00

35 lines
857 B
C++

//========= Copyright © 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