2021-04-22 21:46:11 -04:00
|
|
|
#pragma once
|
2022-01-04 11:57:09 -05:00
|
|
|
#include <utils/concurrency.hpp>
|
2021-04-22 21:46:11 -04:00
|
|
|
|
|
|
|
namespace scripting
|
|
|
|
{
|
2022-01-04 11:57:09 -05:00
|
|
|
using shared_table_t = std::unordered_map<std::string, std::string>;
|
|
|
|
|
2021-04-22 21:46:11 -04:00
|
|
|
extern std::unordered_map<int, std::unordered_map<std::string, int>> fields_table;
|
2021-08-29 22:58:10 -04:00
|
|
|
extern std::unordered_map<std::string, std::unordered_map<std::string, const char*>> script_function_table;
|
2022-01-04 11:57:09 -05:00
|
|
|
extern utils::concurrency::container<shared_table_t> shared_table;
|
2021-04-22 21:46:11 -04:00
|
|
|
}
|