-
Notifications
You must be signed in to change notification settings - Fork 0
/
RingMenu.xml
30 lines (30 loc) · 1.15 KB
/
RingMenu.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
29
30
<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="RingMenu.lua"/>
<Frame name="RingMenuFrame" parent="UIParent">
<Size><AbsDimension x="300" y="300" /></Size>
<Anchors>
<Anchor point="CENTER" relativePoint="CENTER" />
</Anchors>
<Layers>
<Layer level="BACKGROUND">
<Texture name="RingMenuTextureShadow" file="Interface\AddOns\RingMenu\RingMenuBackdrop">
<Anchors>
<Anchor point="BOTTOMLEFT" relativePoint="BOTTOMLEFT" />
<Anchor point="TOPRIGHT" relativePoint="TOPRIGHT" />
</Anchors>
</Texture>
</Layer>
</Layers>
<Scripts>
<OnLoad>
RingMenuFrame_OnLoad()
</OnLoad>
<OnEvent>
RingMenuFrame_OnEvent(event)
</OnEvent>
<OnUpdate>
RingMenuFrame_OnUpdate(arg1)
</OnUpdate>
</Scripts>
</Frame>
</Ui>