mirror of
https://codeberg.org/Duvelcorp/MetaHunt.git
synced 2026-09-22 07:36:58 +00:00
26 lines
802 B
XML
26 lines
802 B
XML
<!--
|
|
FeedOMatic Runtime Frame Loader (MetaHunt)
|
|
Minimal runtime XML without legacy options window definitions.
|
|
-->
|
|
<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">
|
|
<Frame name="Frame_GFW_FeedOMatic">
|
|
<Scripts>
|
|
<OnUpdate>
|
|
if (MTH_FOM_OnUpdate) then
|
|
MTH_FOM_OnUpdate(arg1);
|
|
elseif (FOM_OnUpdate) then
|
|
FOM_OnUpdate(arg1);
|
|
end
|
|
</OnUpdate>
|
|
</Scripts>
|
|
</Frame>
|
|
|
|
<GameTooltip name="FOMTooltip" frameStrata="TOOLTIP" hidden="true" parent="UIParent" inherits="GameTooltipTemplate">
|
|
<Scripts>
|
|
<OnLoad>
|
|
this:SetOwner(UIParent, "ANCHOR_NONE");
|
|
</OnLoad>
|
|
</Scripts>
|
|
</GameTooltip>
|
|
</Ui>
|