-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFishingBuddy.xml
28 lines (27 loc) · 897 Bytes
/
FishingBuddy.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<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">
<Script file="FishingBuddy.lua"/>
<Script file="FishingInit.lua"/>
<!-- Frame to handle all core events -->
<Frame name="FishingBuddyRoot" enableMouse="false" movable="true" parent="UIParent" hidden="true">
<Scripts>
<OnLoad>
FishingBuddy.OnLoad(self);
</OnLoad>
</Scripts>
</Frame>
<Frame name="FishingBuddy_PostCastUpdateFrame" hidden="true">
<Scripts>
<OnUpdate>
FishingBuddy.PostCastUpdate();
</OnUpdate>
</Scripts>
</Frame>
<GameTooltip name="FishingBuddyTooltip" frameStrata="TOOLTIP" hidden="true" inherits="GameTooltipTemplate">
<Scripts>
<OnLoad>
self:SetOwner(UIParent, "ANCHOR_NONE");
</OnLoad>
</Scripts>
</GameTooltip>
</Ui>