feat(lua): much more complete imgui bindings, allow lua imgui callbacks from outside yimmenu classic tabs through gui.add_imgui(func) but also inside yimmenu classic tabs through tab:add_imgui(func) (#1736)

This commit is contained in:
Quentin
2023-07-17 14:55:42 +02:00
committed by GitHub
parent 5a76164d43
commit 14f4241bd8
18 changed files with 5294 additions and 11 deletions

View File

@ -13,6 +13,7 @@
#include "bindings/script.hpp"
#include "bindings/tunables.hpp"
#include "bindings/vector.hpp"
#include "bindings/imgui.hpp"
#include "file_manager.hpp"
#include "script_mgr.hpp"
@ -215,5 +216,6 @@ namespace big
lua::event::bind(state);
lua::vector::bind(state);
lua::global_table::bind(state);
lua::imgui::bind(state, state.globals());
}
}