- 1,363
- 472
- Версия MoonLoader
- .026-beta
Lua:
function imgui.OnDrawFrame()
imgui.ShowCursor = false
if window.v then
local resX, resY = getScreenResolution()
imgui.SetNextWindowPos(imgui.ImVec2(resX / 2 +250, resY /2 + 200), imgui.Cond.FirstUseEver)
imgui.SetNextWindowSize(imgui.ImVec2(320, 110), imgui.Cond.FirstUseEver)
imgui.Begin(u8'бегин', window, imgui.WindowFlags.NoCollapse + imgui.WindowFlags.NoResize)
imgui.Text(u8'Ку')
imgui.End()
end
end