- removed the last remnants of Ace2 (AceOO-2.0 and AceLibrary) thanks to a huge amount of help from ckknight for metatables

This commit is contained in:
Parnic
2010-09-17 05:41:04 +00:00
parent fd6d570e0b
commit 250adfc2db
56 changed files with 203 additions and 294 deletions

View File

@ -1,8 +1,6 @@
local AceOO = AceLibrary("AceOO-2.0")
-- changed to inherit from the TargetCC bar since the only difference is the unit and the default placement
-- helps keep changes in one place and we don't have to duplicate the CC spell tables and they don't have to be globals
local PlayerCC = AceOO.Class(TargetCC)
local PlayerCC = IceCore_CreateClass(TargetCC)
-- Constructor --
function PlayerCC.prototype:init()
@ -17,7 +15,7 @@ function PlayerCC.prototype:GetDefaultSettings()
settings["side"] = IceCore.Side.Left
settings["offset"] = 5
return settings
end