Adding base function

This commit is contained in:
Szyler
2021-08-16 14:46:03 +02:00
parent fb22d20160
commit 7ebdf85025
+10
View File
@@ -27,6 +27,7 @@ AtlasLoot_LoadAllModules()
AtlasLoot_ShowQuickLooks(button)
AtlasLoot_RefreshQuickLookButtons()
AtlasLoot_AddTooltip(frameb, tooltiptext)
AL_FindId(name, difficulty)
]]
AtlasLoot = LibStub("AceAddon-3.0"):NewAddon("AtlasLoot");
@@ -1437,3 +1438,12 @@ function AtlasLoot_AddTooltip(frameb, tooltiptext)
frame:SetScript("OnLeave", function() GameTooltip:Hide() end)
end
--[[
AL_FindId(name, difficulty)
Finds the Ids of other difficulties based on the name of the item and the difficulty parameter given.
On the form of {Name, normal, heroic, mythic, mythic1, mythic2, ... ,mythicN}
]]
function AL_FindId(name, difficulty)
end