mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 06:40:13 -05:00
19 lines
458 B
Lua
19 lines
458 B
Lua
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()
|