2021-09-09 21:21:51 -04:00
|
|
|
#pragma once
|
|
|
|
#include "game/ui_scripting/menu.hpp"
|
2021-09-28 16:39:27 -04:00
|
|
|
#include "game/ui_scripting/event.hpp"
|
2021-09-09 21:21:51 -04:00
|
|
|
|
|
|
|
namespace ui_scripting
|
|
|
|
{
|
2021-09-26 19:37:48 -04:00
|
|
|
void enable_error_hook();
|
|
|
|
void disable_error_hook();
|
|
|
|
|
|
|
|
game::hks::lua_function find_function(const std::string& name);
|
2021-09-28 16:39:27 -04:00
|
|
|
game::hks::lua_function find_method(const std::string& name);
|
|
|
|
|
|
|
|
void notify(event e);
|
2021-09-09 21:21:51 -04:00
|
|
|
}
|