mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-09 10:39:03 +08:00
20 lines
420 B
Plaintext
20 lines
420 B
Plaintext
|
//========== 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 );
|
|||
|
}
|