register_draw(function)

this registers all the functions as usable

ImGui.register_draw(function()
    ImGui.Begin("Test", true)
    ImGui.Text("This is a begin window :)")
    ImGui.End()
end)

Last updated