8 lines
263 B
C++
8 lines
263 B
C++
|
#pragma once
|
||
|
#include <utils/concurrency.hpp>
|
||
|
|
||
|
namespace scripting
|
||
|
{
|
||
|
extern std::unordered_map<int, std::unordered_map<std::string, int>> fields_table;
|
||
|
extern std::unordered_map<std::string, std::unordered_map<std::string, const char*>> script_function_table;
|
||
|
}
|