mirror of
https://codeberg.org/Duvelcorp/MetaHunt.git
synced 2026-09-22 15:46:59 +00:00
26 lines
808 B
XML
26 lines
808 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="MTH_FOM_OnUpdateFrame">
|
|
<Scripts>
|
|
<OnUpdate>
|
|
if (MTH_FOM_OnUpdate) then
|
|
MTH_FOM_OnUpdate(arg1);
|
|
elseif (FOM_OnUpdate) then
|
|
FOM_OnUpdate(arg1);
|
|
end
|
|
</OnUpdate>
|
|
</Scripts>
|
|
</Frame>
|
|
|
|
<GameTooltip name="MTH_FOM_Tooltip" frameStrata="TOOLTIP" hidden="true" parent="UIParent" inherits="GameTooltipTemplate">
|
|
<Scripts>
|
|
<OnLoad>
|
|
this:SetOwner(UIParent, "ANCHOR_NONE");
|
|
</OnLoad>
|
|
</Scripts>
|
|
</GameTooltip>
|
|
</Ui>
|