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.

22 lines
507 B

  1. //========== Copyright � 2008, Valve Corporation, All rights reserved. ========
  2. //
  3. // Purpose:
  4. //
  5. //=============================================================================
  6. #ifndef VSCRIPT_SERVER_H
  7. #define VSCRIPT_SERVER_H
  8. #include "vscript/ivscript.h"
  9. #include "vscript_shared.h"
  10. #if defined( _WIN32 )
  11. #pragma once
  12. #endif
  13. extern IScriptVM * g_pScriptVM;
  14. // Only allow scripts to create entities during map initialization
  15. bool IsEntityCreationAllowedInScripts( void );
  16. #endif // VSCRIPT_SERVER_H