diff options
Diffstat (limited to 'game/client/iprofiling.h')
| -rw-r--r-- | game/client/iprofiling.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/game/client/iprofiling.h b/game/client/iprofiling.h new file mode 100644 index 0000000..76237d1 --- /dev/null +++ b/game/client/iprofiling.h @@ -0,0 +1,35 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $Workfile: $ +// $Date: $ +// +//----------------------------------------------------------------------------- +// $Log: $ +// +// $NoKeywords: $ +//=============================================================================// +#if !defined( IPROFILING_H ) +#define IPROFILING_H +#ifdef _WIN32 +#pragma once +#endif + +#include <vgui/VGUI.h> + +namespace vgui +{ + class Panel; +} + +abstract_class IProfiling +{ +public: + virtual void Create( vgui::VPANEL parent ) = 0; + virtual void Destroy( void ) = 0; +}; + +extern IProfiling *profiling; + +#endif // IPROFILING_H
\ No newline at end of file |