blob: 2f7c49bcb26296b4c5bc9034ef241e9ef36efde5 (
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
28
29
30
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef ENGINEPERFTOOLS_H
#define ENGINEPERFTOOLS_H
#ifdef _WIN32
#pragma once
#endif
namespace vgui
{
class Panel;
};
abstract_class IEnginePerfTools
{
public:
virtual void Init( void ) = 0;
virtual void Shutdown( void ) = 0;
virtual void InstallPerformanceToolsUI( vgui::Panel *parent ) = 0;
virtual bool ShouldPause() const = 0;
};
extern IEnginePerfTools *perftools;
#endif // ENGINEPERFTOOLS_H
|