polserver/pol-core/bscript/escriptv.h
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

30 lines
541 B
C++

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