Add replaceFunc function

This commit is contained in:
Federico Cecchetto
2021-05-29 23:35:47 +02:00
parent a58e8c95b6
commit b38e50d520
3 changed files with 79 additions and 0 deletions

View File

@ -2,6 +2,8 @@
namespace scripting
{
extern std::unordered_map<unsigned, unsigned> replaced_functions;
extern std::unordered_map<int, std::unordered_map<std::string, int>> fields_table;
extern std::unordered_map<std::string, std::unordered_map<std::string, char*>> script_function_table;
}