function imgui.OnDrawFrame()
if main_window.v then
local sw, sh = getScreenResolution()
imgui.SetNextWindowPos(imgui.ImVec2(sw - 500, sh - 400), imgui.Cond.FirstUseEver, imgui.ImVec2(0.5, 0.5))
imgui.SetNextWindowSize(imgui.ImVec2(465, 260), imgui.Cond.FirstUseEver)
imgui.Begin('binder', main_window, imgui.WindowFlags.NoResize + imgui.WindowFlags.ShowBorders)
local btn_size = imgui.ImVec2(-0.1, 0)
if imgui.Button(u8('Открыть машину'), btn_size) then sampSendChat("/lock") end
imgui.End()
end
end