local imgui = require('imgui')
local wndSize = nil
imgui.Process = true
function imgui.OnDrawFrame()
imgui.Begin('##1')
wndSize = imgui.GetWindowSize()
imgui.Text('wnd1')
imgui.End()
imgui.Begin('##2')
imgui.SetWindowSize('##2', imgui.ImVec2(228, wndSize.y))
imgui.Text('wnd2')
imgui.End()
end