vanilla-wow-addons – Rev 1

Subversion Repositories:
Rev:
<!--

        SelfCast: Adds self-targeting, either by use of the alt key or automatically
                copyright 2004 by Telo
        
        - If selfcast is enabled, positive spells cast without a friendly target will
          automatically target the player
        - Otherwise, if alt-casting is enabled, holding the alt key when activating a
          button will target the player

-->
<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="SelfCast.lua"/>
        <GameTooltip name="SelfCastTooltip" inherits="GameTooltipTemplate" parent="UIParent" hidden="true"/>
        <Frame name="SelfCastFrame" toplevel="true" frameStrata="LOW" enableMouse="true" parent="UIParent">
                <Scripts>
                        <OnLoad>
                                SelfCast_OnLoad();
                        </OnLoad>
                        <OnEvent>
                                SelfCast_OnEvent(event);
                        </OnEvent>
                </Scripts>
        </Frame>
</Ui>