imgui.SetNextWindowSize(imgui.ImVec2(x, y))
imgui.SetNextWindowPos(imgui.ImVec2(0, 0))
imgui.Begin(' ', main_window_state, imgui.WindowFlags.NoCollapse + imgui.WindowFlags.NoResize + imgui.WindowFlags.NoTitleBar)
if imgui.IsWindowHovered() then
imgui.GetIO().MousePos = imgui.ImVec2(x / 2, y / 2)
imgui.OpenPopup('PieMenu')
end
if pie.BeginPiePopup('PieMenu', 1) then
if pie.PieMenuItem('TestTest') then end
if pie.PieMenuItem('Test') then end
if pie.PieMenuItem('Test', false) then end
if pie.BeginPieMenu('...') then
if pie.BeginPieMenu('...\n...') then
if pie.PieMenuItem(u8'пункт1') then end
if pie.PieMenuItem(u8'пункт2') then end
pie.EndPieMenu()
end
if pie.PieMenuItem('menu') then end
if pie.PieMenuItem('menu') then
sampAddChatMessage('Test',-1)
end
pie.EndPieMenu()
end
pie.EndPiePopup()
end
imgui.End()