#pragma once namespace scripting { extern std::unordered_map> script_function_table; extern std::unordered_map>> script_function_table_sort; extern std::unordered_map> script_function_table_rev; extern std::string current_file; std::string find_token(std::uint32_t id); std::string get_token(unsigned int id); void on_shutdown(const std::function& callback); }