iw5-gsc-utils/src/component/scripting.hpp
Federico Cecchetto 0ac5225114 #5
2021-12-13 03:05:22 +01:00

9 lines
289 B
C++

#pragma once
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;
void on_shutdown(const std::function<void()>& callback);
}