mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* tidy * Automated clang-tidy change: modernize-concat-nested-namespaces * compile test * fix namespace --------- Co-authored-by: Clang Tidy <clang-tidy@users.noreply.github.com>
20 lines
243 B
C++
20 lines
243 B
C++
/** @file
|
|
*
|
|
* @par History
|
|
*/
|
|
|
|
|
|
#ifndef BSCRIPT_CONFIG_H
|
|
#define BSCRIPT_CONFIG_H
|
|
|
|
namespace Pol::Bscript
|
|
{
|
|
struct EScriptConfig
|
|
{
|
|
unsigned int max_call_depth;
|
|
};
|
|
|
|
extern EScriptConfig escript_config;
|
|
} // namespace Pol::Bscript
|
|
|
|
#endif
|