vanilla-wow-addons – Rev 1

Subversion Repositories:
Rev:
<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">
<!--
        Enchantrix v3.4.1 (Platypus)
        $Id: Enchantrix.xml 632 2005-12-18 14:36:34Z norganna $
        
        License:
                This program is free software; you can redistribute it and/or
                modify it under the terms of the GNU General Public License
                as published by the Free Software Foundation; either version 2
                of the License, or (at your option) any later version.

                This program is distributed in the hope that it will be useful,
                but WITHOUT ANY WARRANTY; without even the implied warranty of
                MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                GNU General Public License for more details.

                You should have received a copy of the GNU General Public License
                along with this program(see GLP.txt); if not, write to the Free Software
                Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
-->
        <Script file="Babylonian.lua"/>
        <Script file="EnxStrings.lua"/>
        <Script file="EnxLocale.lua"/>

        <Script file="DisenchantList.lua"/>
        <Script file="EnxUtil.lua"/>
        <Script file="EnxCommand.lua"/>
        <Script file="Enchantrix.lua"/>
        <Frame name="Enchantrix" parent="UIParent" hidden="true">
                <Scripts>
                        <OnLoad>
                        Enchantrix_OnLoad();
                        this:RegisterEvent("ADDON_LOADED")
                </OnLoad>
                        <OnEvent>
                                if (event == "ADDON_LOADED" and string.lower(arg1) == "enchantrix") then
                                        Enchantrix_AddonLoaded()
                                        this:UnregisterEvent("ADDON_LOADED")
                                end
                        </OnEvent>
                </Scripts>
        </Frame>
        <Frame name="EnchantrixScheduler" parent="UIParent" hidden="false">
                <Scripts>
                        <OnUpdate>
                                Enchantrix_OnUpdate(arg1);
                        </OnUpdate>
                </Scripts>
        </Frame>
</Ui>