5bb7be4968
Each Details_* plugin and the main Details addon now lives in its own repo-root folder, matching the Exiles fork-layout convention.
18 lines
434 B
XML
18 lines
434 B
XML
<Ui xmlns="http://www.blizzard.com/wow/ui/"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.blizzard.com/wow/ui/
|
|
..\..\FrameXML\UI.xsd">
|
|
|
|
<!-- event listener -->
|
|
<Frame name="_detalhes_listener">
|
|
<Scripts>
|
|
<OnLoad>
|
|
self:RegisterEvent("ADDON_LOADED");
|
|
</OnLoad>
|
|
<OnEvent>
|
|
_detalhes.OnEvent (self, event, ...);
|
|
</OnEvent>
|
|
</Scripts>
|
|
</Frame>
|
|
</Ui>
|