chore: hoist plugins to root and move main into Details/

Each Details_* plugin and the main Details addon now lives in its own
repo-root folder, matching the Exiles fork-layout convention.
This commit is contained in:
2026-05-25 10:59:28 +02:00
parent 0b0a5004eb
commit 5bb7be4968
421 changed files with 7 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
local Details = _G.Details
local AceLocale = LibStub("AceLocale-3.0")
local L = AceLocale:GetLocale("Details")
local addonName, Details222 = ...
function Details.RegisterDragonFlightEditMode()
if (EventRegistry and type(EventRegistry) == "table") then
local onEnterEditMode = function()
end
local onLeaveEditMode = function()
end
EventRegistry:RegisterCallback("EditMode.Enter", onEnterEditMode)
EventRegistry:RegisterCallback("EditMode.Edit", onLeaveEditMode)
end
end