mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
31 lines
692 B
C++
31 lines
692 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose: Implementation of the VGUI ISurface interface using the
|
|
// material system to implement it
|
|
//
|
|
// $Revision: $
|
|
// $NoKeywords: $
|
|
//===========================================================================//
|
|
|
|
#ifndef VGUIMATSURFACE_H
|
|
#define VGUIMATSURFACE_H
|
|
|
|
#include <vgui/VGUI.h>
|
|
#include "tier3/tier3.h"
|
|
|
|
|
|
namespace vgui
|
|
{
|
|
class IInputInternal;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Globals...
|
|
//-----------------------------------------------------------------------------
|
|
extern vgui::IInputInternal *g_pIInput;
|
|
|
|
|
|
#endif // VGUIMATSURFACE_H
|
|
|
|
|