2022-03-02 06:26:55 -05:00
|
|
|
#pragma once
|
|
|
|
#include "game/ui_scripting/lua/value_conversion.hpp"
|
|
|
|
|
|
|
|
namespace ui_scripting
|
|
|
|
{
|
|
|
|
int main_function_handler(game::hks::lua_State* state);
|
|
|
|
void add_converted_function(game::hks::cclosure* closure, const sol::protected_function& function);
|
|
|
|
void clear_converted_functions();
|
|
|
|
|
|
|
|
void enable_error_hook();
|
|
|
|
void disable_error_hook();
|
2022-04-11 05:05:21 -04:00
|
|
|
|
|
|
|
bool lui_running();
|
2022-03-02 06:26:55 -05:00
|
|
|
}
|