blob: 6b61566d10c158ae13c4686b4ca5610d281c8961 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef GAMEUIPANEL_H
#define GAMEUIPANEL_H
#ifdef _WIN32
#pragma once
#endif
// Retrieve the root panel for the GameUI subsystem
namespace vgui
{
class Panel;
};
vgui::Panel *GetGameUIRootPanel( void );
#endif // GAMEUIPANEL_H
|