diff options
| author | Joe Ludwig <[email protected]> | 2013-06-26 15:22:04 -0700 |
|---|---|---|
| committer | Joe Ludwig <[email protected]> | 2013-06-26 15:22:04 -0700 |
| commit | 39ed87570bdb2f86969d4be821c94b722dc71179 (patch) | |
| tree | abc53757f75f40c80278e87650ea92808274aa59 /mp/src/public/ivguicenterprint.h | |
| download | source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.tar.xz source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.zip | |
First version of the SOurce SDK 2013
Diffstat (limited to 'mp/src/public/ivguicenterprint.h')
| -rw-r--r-- | mp/src/public/ivguicenterprint.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/mp/src/public/ivguicenterprint.h b/mp/src/public/ivguicenterprint.h new file mode 100644 index 00000000..cec1fe83 --- /dev/null +++ b/mp/src/public/ivguicenterprint.h @@ -0,0 +1,39 @@ +//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $Workfile: $
+// $Date: $
+//
+//-----------------------------------------------------------------------------
+// $Log: $
+//
+// $NoKeywords: $
+//=============================================================================//
+#if !defined( IVGUICENTERPRINT_H )
+#define IVGUICENTERPRINT_H
+#ifdef _WIN32
+#pragma once
+#endif
+
+#include "interface.h"
+
+//-----------------------------------------------------------------------------
+// Purpose: Engine Center Print Interface
+//-----------------------------------------------------------------------------
+abstract_class ICenterPrint
+{
+public:
+ virtual void SetTextColor( int r, int g, int b, int a ) = 0;
+ virtual void Print( char *text ) = 0;
+ virtual void Print( wchar_t *text ) = 0;
+ virtual void ColorPrint( int r, int g, int b, int a, char *text ) = 0;
+ virtual void ColorPrint( int r, int g, int b, int a, wchar_t *text ) = 0;
+ virtual void Clear( void ) = 0;
+};
+
+extern ICenterPrint *centerprint;
+
+#define VCENTERPRINT_INTERFACE_VERSION "VCENTERPRINT002"
+
+#endif // IVGUICENTERPRINT_H
\ No newline at end of file |