Scripts/resources/[il]/illenium-appearance/client/radial/ox.lua

18 lines
349 B
Lua
Raw Normal View History

2024-12-29 19:49:12 +00:00
if not Radial.IsOX() then return end
function Radial.Add(title, event)
lib.addRadialItem({
id = Radial.MenuID,
icon = "shirt",
label = title,
event = event,
onSelect = function()
TriggerEvent(event)
end
})
end
function Radial.Remove()
lib.removeRadialItem(Radial.MenuID)
end