csgo-2018-source/game/client/vscript_client.nut

20 lines
401 B
Plaintext
Raw Permalink Normal View History

2021-07-24 21:11:47 -07:00
//========== Copyright <20> 2008, Valve Corporation, All rights reserved. ========
//
// Purpose:
//
//=============================================================================
function UniqueString( string = "" )
{
return DoUniqueString( string.tostring() );
}
function IncludeScript( name, scope = null )
{
if ( scope == null )
{
scope = this;
}
return ::DoIncludeScript( name, scope );
}