initial
This commit is contained in:
25
game/client/cstrike15/gameui/gameui.h
Normal file
25
game/client/cstrike15/gameui/gameui.h
Normal file
@@ -0,0 +1,25 @@
|
||||
//========= Copyright © 1996-2005, 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
|
||||
Reference in New Issue
Block a user