Moved version 0.11 to SVN

This commit is contained in:
iceroth
2006-07-17 13:47:18 +00:00
parent 80a88cfdb1
commit 772fe5a179
19 changed files with 1839 additions and 0 deletions

20
IceHUD.lua Normal file
View File

@ -0,0 +1,20 @@
IceHUD = AceLibrary("AceAddon-2.0"):new("AceDebug-2.0")
local AceOO = AceLibrary("AceOO-2.0")
IceHUD.Location = "Interface\\AddOns\\IceHUD"
function IceHUD:OnInitialize()
self:SetDebugging(false)
self:Debug("IceHUD:OnInitialize()")
self.IceCore = IceCore:new()
end
function IceHUD:OnEnable()
self:Debug("IceHUD:OnEnable()")
self.IceCore:Enable()
end