1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-09-20 12:36:05 +08:00

Update from SDK 2013

This commit is contained in:
Kenzzer
2025-02-19 18:39:00 -05:00
committed by Nicholas Hastings
parent 6d5c024820
commit 94b660e16e
7474 changed files with 2597282 additions and 1254065 deletions

View File

@ -0,0 +1,30 @@
//--------------------------------------------------------------------------------------------------------
//========= Copyright Valve Corporation, All rights reserved. ============//
#ifndef NAV_MENU_H
#define NAV_MENU_H
#ifdef SERVER_USES_VGUI
#include <vgui_controls/Menu.h>
#include <game/client/iviewport.h>
#include <filesystem.h>
#include "utlstack.h"
#include "utlvector.h"
#include <KeyValues.h>
class NavMenu : public vgui::Menu
{
private:
DECLARE_CLASS_SIMPLE( NavMenu, vgui::Menu );
public:
NavMenu( vgui::Panel *parent, const char *panelName );
~NavMenu();
bool LoadFromFile( const char * fileName ); // load menu from file (via KeyValues)
};
#endif // SERVER_USES_VGUI
#endif // NAV_MENU_H