You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
401 B
19 lines
401 B
//========== Copyright © 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 ); |
|
}
|
|
|