This repository has been archived on 2025-12-11. You can view files and clone it, but cannot push or open issues or pull requests.

17 lines
407 B
Lua

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