polserver/pol-core/bscript/escriptv.h
turley 189cad3479 Formating everything
Authors are not forced to use the clang-format setting, but should
atleast be inspired by the style.
The only thing which is now not allowed are tabs for ident/alignment!
2016-02-19 19:26:35 +01:00

31 lines
528 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
{
namespace 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;
}
}
#endif