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