local function DrawRoundedImage(x, y, w, h, image)
local cornerRadius = 16 -- радиус закругления
draw.RoundedBox(cornerRadius, x, y, w, h, Color(255, 255, 255)) -- закругленный бокс
surface.SetMaterial(image) -- материал изображения
surface.DrawTexturedRect(x, y, w, h) -- рисование изображения
end