2021-09-09 21:21:51 -04:00
|
|
|
#pragma once
|
|
|
|
#include "game/ui_scripting/menu.hpp"
|
|
|
|
|
|
|
|
namespace ui_scripting
|
|
|
|
{
|
2021-09-26 19:37:48 -04:00
|
|
|
extern std::unordered_map<std::string, std::unordered_map<std::string, game::hks::lua_function>> libs;
|
|
|
|
|
|
|
|
void enable_error_hook();
|
|
|
|
void disable_error_hook();
|
|
|
|
|
|
|
|
game::hks::lua_function find_function(const std::string& name);
|
2021-09-09 21:21:51 -04:00
|
|
|
}
|