mirror of
https://github.com/fedddddd/iw5-gsc-utils.git
synced 2025-04-21 21:25:43 +00:00
9 lines
289 B
C++
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);
|
|
} |