You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
518 B
14 lines
518 B
tinsert(Prat.EnableTasks, function(self)
|
|
if not LibStub:GetLibrary("LibDataBroker-1.1", true) then return end
|
|
LibStub:GetLibrary("LibDataBroker-1.1"):NewDataObject("Prat", {
|
|
type = "launcher",
|
|
text = "Prat |cff8080ff3.0|r",
|
|
icon = "Interface\\Addons\\" .. Prat.FolderLocation .. "\\textures\\prat-logo-dark-small",
|
|
OnClick = function(frame, button)
|
|
Prat.ToggleOptionsWindow()
|
|
end,
|
|
OnTooltipShow = function(tooltip)
|
|
tooltip:AddLine(Prat.Version)
|
|
end,
|
|
})
|
|
end)
|
|
|