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
292 B
14 lines
292 B
local WIT, core = ...
|
|
core.UI = {}
|
|
|
|
local UI = core.UI
|
|
|
|
function UI.Initialize()
|
|
if UI.MinimapIcon ~= nil then
|
|
UI.MinimapIcon.Initialize();
|
|
end
|
|
end
|
|
|
|
UI.MainWindow = CreateFrame("Frame")
|
|
UI.MainWindow:RegisterEvent("ADDON_LOADED")
|
|
UI.MainWindow:SetScript("OnEvent", core.Init)
|
|
|