blob: a739902b5a1c9a4d031b24d927a85e0aee8112de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $Workfile: $
// $Date: $
// $NoKeywords: $
//=============================================================================//
#ifndef VGUI_VPROFGRAPHPANEL_H
#define VGUI_VPROFGRAPHPANEL_H
namespace vgui
{
class Panel;
}
//-----------------------------------------------------------------------------
// Creates/destroys the vprof graph panel
//-----------------------------------------------------------------------------
void CreateVProfGraphPanel( vgui::Panel *pParent );
void DestroyVProfGraphPanel();
#endif // VGUI_VPROFGRAPHPANEL_H
|