mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-08 09:49:36 +00:00
1
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||||
//
|
||||
// Purpose:
|
||||
//
|
||||
// $NoKeywords: $
|
||||
//=============================================================================//
|
||||
#include "quakedef.h"
|
||||
#include "networkstringtable.h"
|
||||
#include "client.h"
|
||||
|
||||
// memdbgon must be the last include file in a .cpp file!!!
|
||||
#include "tier0/memdbgon.h"
|
||||
|
||||
#ifndef SHARED_NET_STRING_TABLES
|
||||
static CNetworkStringTableContainer s_NetworkStringTableClient;
|
||||
CNetworkStringTableContainer *networkStringTableContainerClient = &s_NetworkStringTableClient;
|
||||
|
||||
// Expose to client .dll
|
||||
EXPOSE_SINGLE_INTERFACE_GLOBALVAR(CNetworkStringTableContainer, INetworkStringTableContainer, INTERFACENAME_NETWORKSTRINGTABLECLIENT, s_NetworkStringTableClient );
|
||||
#endif
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Purpose:
|
||||
//-----------------------------------------------------------------------------
|
||||
void CL_PrintStringTables( void )
|
||||
{
|
||||
if ( cl.m_StringTableContainer )
|
||||
{
|
||||
cl.m_StringTableContainer->Dump();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user