polserver/pol-core/bscript/escriptv.cpp
turleypol 1463b76c7c
Includes are now all relative to pol-core basefolder (#906)
* all except pol

* pol and includes under defines

* something weird has happened

* remove own folder from include searchpath

* fixed remaining, adapted include style for external headers

* missing include
2026-07-25 23:01:18 +02:00

23 lines
465 B
C++

/** @file
*
* @par History
* - 2006/09/23 Shinigami: Script_Cycles, Sleep_Cycles and Script_passes uses 64bit now
*/
#include "bscript/escriptv.h"
#include "clib/rawtypes.h"
namespace Pol::Bscript
{
int include_debug;
int executor_count = 0;
std::atomic<int> eobject_imp_count( 0 );
std::atomic<int> eobject_imp_constructions( 0 );
int escript_program_count = 0;
u64 escript_instr_cycles = 0;
int escript_execinstr_calls = 0;
} // namespace Pol::Bscript