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

21 lines
227 B
C++

/** @file
*
* @par History
*/
#ifndef BSCRIPT_CONFIG_H
#define BSCRIPT_CONFIG_H
namespace Pol
{
namespace Bscript
{
struct EScriptConfig
{
unsigned int max_call_depth;
};
extern EScriptConfig escript_config;
}
}
#endif