vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <!--
2  
3 SelfCast: Adds self-targeting, either by use of the alt key or automatically
4 copyright 2004 by Telo
5  
6 - If selfcast is enabled, positive spells cast without a friendly target will
7 automatically target the player
8 - Otherwise, if alt-casting is enabled, holding the alt key when activating a
9 button will target the player
10  
11 -->
12 <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/
13 ..\FrameXML\UI.xsd">
14 <Script file="SelfCast.lua"/>
15 <GameTooltip name="SelfCastTooltip" inherits="GameTooltipTemplate" parent="UIParent" hidden="true"/>
16 <Frame name="SelfCastFrame" toplevel="true" frameStrata="LOW" enableMouse="true" parent="UIParent">
17 <Scripts>
18 <OnLoad>
19 SelfCast_OnLoad();
20 </OnLoad>
21 <OnEvent>
22 SelfCast_OnEvent(event);
23 </OnEvent>
24 </Scripts>
25 </Frame>
26 </Ui>