h1-mod/src/client/component/scripting.hpp
Federico Cecchetto e5149fe721 Scripting progress
2022-03-03 02:09:13 +01:00

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;
}