function imgui.OnDrawFrame()
if main_window_state.v then
imgui.SetNextWindowSize(imgui.ImVec2(220, 234), imgui.Cond.FirstUseEver)
imgui.Begin('My window', main_window_state)
imgui.BeginChild("Любое название", imgui.ImVec2(200, 200), true)--начало
imgui.Text('Hello world')
imgui.EndChild()--конец
imgui.End()
end
end