local sW, sH = getScreenResolution()
function imgui.OnDrawFrame()
local iScreenWidth, iScreenHeight = getScreenResolution()
imgui.SetNextWindowPos(imgui.ImVec2(sW / 2, sH / 2), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
imgui.SetNextWindowSize(imgui.ImVec2(300, 300), imgui.Cond.FirstUseEver)
imgui.Begin('qq', _, imgui.WindowFlags.NoCollapse + imgui.WindowFlags.NoScrollbar) -- imgui.WindowFlags.NoResize
if imgui.CollapsingHeader('test') then
end
imgui.End()
end