mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 14:50:13 -05:00
20 lines
520 B
Lua
20 lines
520 B
Lua
local L = LibStub("AceLocale-3.0"):GetLocale("IceHUD", false)
|
|
local IceFocusThreat = IceCore_CreateClass(IceThreat)
|
|
|
|
-- constructor
|
|
function IceFocusThreat.prototype:init()
|
|
IceFocusThreat.super.prototype.init(self, "FocusThreat", "focus")
|
|
end
|
|
|
|
function IceFocusThreat.prototype:GetDefaultSettings()
|
|
local settings = IceFocusThreat.super.prototype.GetDefaultSettings(self)
|
|
|
|
settings["side"] = IceCore.Side.Right
|
|
settings["offset"] = 4
|
|
|
|
return settings
|
|
end
|
|
|
|
-- Load us up
|
|
IceHUD.IceFocusThreat = IceFocusThreat:new()
|