2021-04-22 21:46:11 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
namespace scripting
|
|
|
|
{
|
|
|
|
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;
|
2021-04-22 21:46:11 -04:00
|
|
|
}
|