polserver/pol-core/bscript/escriptv.h
turleypol 21577d8e5b
Clang Tidy concat namespaces (#855)
* tidy

* Automated clang-tidy change: modernize-concat-nested-namespaces

* compile test

* fix namespace

---------

Co-authored-by: Clang Tidy <clang-tidy@users.noreply.github.com>
2026-01-17 10:30:21 +01:00

30 lines
544 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