26 lines
793 B
XML
26 lines
793 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">
|
|
<Script file="MinigameFrame.lua"/>
|
|
<Frame name="MinigameFrame" toplevel="true" parent="UIParent" movable="true" enableMouse="true" hidden="true">
|
|
<Size>
|
|
<AbsDimension x="384" y="512"/>
|
|
</Size>
|
|
<Anchors>
|
|
<Anchor point="TOPLEFT">
|
|
<Offset>
|
|
<AbsDimension x="512" y="-104"/>
|
|
</Offset>
|
|
</Anchor>
|
|
</Anchors>
|
|
<HitRectInsets>
|
|
<AbsInset left="0" right="30" top="0" bottom="45"/>
|
|
</HitRectInsets>
|
|
<Scripts>
|
|
<OnLoad>
|
|
self:RegisterEvent("START_MINIGAME");
|
|
self:RegisterEvent("MINIGAME_UPDATE");
|
|
</OnLoad>
|
|
<OnEvent function="MinigameFrame_OnEvent"/>
|
|
</Scripts>
|
|
</Frame>
|
|
</Ui> |