mirror of
https://github.com/Bluewhale1337/ElvUIModernized.git
synced 2026-07-27 08:24:44 +00:00
19 lines
467 B
Lua
19 lines
467 B
Lua
local E, L, V, P, G = unpack(ElvUI); --Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
|
|
local B = E:NewModule("Blizzard", "AceEvent-3.0", "AceHook-3.0");
|
|
|
|
E.Blizzard = B
|
|
|
|
function B:Initialize()
|
|
self:AlertMovers()
|
|
self:EnhanceColorPicker()
|
|
self:PositionCaptureBar()
|
|
self:PositionDurabilityFrame()
|
|
self:PositionGMFrames()
|
|
self:MoveWatchFrame()
|
|
end
|
|
|
|
local function InitializeCallback()
|
|
B:Initialize()
|
|
end
|
|
|
|
E:RegisterModule(B:GetName(), InitializeCallback) |