vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <!--
2  
3 Name: MobHealth2
4 Version: 2.6
5 Author: Wyv (wyv@wp.pl)
6 Description: Displays health value for mobs.
7 Original version by Telo.
8 URL: http://www.curse-gaming.com/mod.php?addid=1087
9 http://ui.worldofwar.net/ui.php?id=681
10 http://www.wowinterface.com/downloads/fileinfo.php?id=3938
11  
12 -->
13  
14 <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/
15 C:\Projects\WoW\Bin\Interface\FrameXML\UI.xsd">
16 <Script file="localization.lua"/>
17 <Script file="MobHealth.lua"/>
18 <Frame name="MobHealthFrame" toplevel="true" frameStrata="HIGH" movable="true" enableMouse="true" parent="UIParent">
19 <Size>
20 <AbsDimension x="128" y="32"/>
21 </Size>
22 <Anchors>
23 <Anchor point="TOP" relativeTo="TargetFrameHealthBar" relativePoint="BOTTOM">
24 <Offset>
25 <AbsDimension x="-2" y="22"/>
26 </Offset>
27 </Anchor>
28 </Anchors>
29 <Layers>
30 <Layer level="ARTWORK">
31 <FontString name="MobHealthText" inherits="GameFontNormalSmall">
32 <Color r="1.0" g="1.0" b="1.0"/>
33 </FontString>
34 </Layer>
35 </Layers>
36 <Scripts>
37 <OnLoad>
38 MobHealth_OnLoad();
39 </OnLoad>
40 <OnEvent>
41 MobHealth_OnEvent(event);
42 </OnEvent>
43 </Scripts>
44 </Frame>
45 </Ui>