initial commit

This commit is contained in:
Gitea
2020-11-13 14:27:50 -05:00
commit e2015fd9bb
581 changed files with 101308 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
local E, L, V, P, G = unpack(select(2, ...)); --Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
local S = E:GetModule('Skins')
local _G = _G
function S:Blizzard_IslandsPartyPoseUI()
if not (E.private.skins.blizzard.enable and E.private.skins.blizzard.islandsPartyPose) then return end
local IslandsPartyPoseFrame = _G.IslandsPartyPoseFrame
IslandsPartyPoseFrame:StripTextures()
IslandsPartyPoseFrame:CreateBackdrop('Transparent')
S:HandleButton(IslandsPartyPoseFrame.LeaveButton)
end
S:AddCallbackForAddon('Blizzard_IslandsPartyPoseUI')