Counter Strike : Global Offensive Source Code
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

  1. //========== Copyright � 2008, Valve Corporation, All rights reserved. ========
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================
  6. function UniqueString( string = "" )
  7. {
  8. return DoUniqueString( string.tostring() );
  9. }
  10. function IncludeScript( name, scope = null )
  11. {
  12. if ( scope == null )
  13. {
  14. scope = this;
  15. }
  16. return ::DoIncludeScript( name, scope );
  17. }