17 lines
407 B
Lua
Raw Normal View History

2025-04-05 22:25:06 +00:00
if not Radial.IsQBX() and not Radial.IsQB() then return end
function Radial.Add(title, event)
exports[Radial.ResourceName]:AddOption({
id = Radial.MenuID,
title = title,
icon = "shirt",
type = "client",
event = event,
shouldClose = true
}, Radial.MenuID)
end
function Radial.Remove()
exports[Radial.ResourceName]:RemoveOption(Radial.MenuID)
end