--Imgui
function imgui.OnDrawFrame()
if window.v then
menu = 1
imgui.BeginGroup()
if imgui.Button('Читы', imgui.ImVec2(250,30)) then menu = 1 end
if imgui.Button('Настройки', imgui.ImVec2(250,30)) then menu = 2 end
imgui.EndGroup()
imgui.SameLine()
imgui.BeginGroup()
imgui.BeginChild('right', imgui.ImVec2(400, 300), true)
if menu == 1 then
imgui.Text('Cheat')
end
if menu == 2 then...