mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
26 lines
593 B
C++
26 lines
593 B
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef GAMEUI_H
|
|
#define GAMEUI_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
class IGameUI;
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: Accessor function to get game ui interface
|
|
//-----------------------------------------------------------------------------
|
|
inline IGameUI *gameui()
|
|
{
|
|
extern IGameUI *g_pGameUI;
|
|
return g_pGameUI;
|
|
}
|
|
|
|
#endif // GAMEUI_H
|