tibia-client/modules/corelib/ui/uilabel.lua

11 lines
224 B
Lua
Raw Normal View History

2012-06-26 00:13:30 +02:00
-- @docclass
UILabel = extends(UIWidget, "UILabel")
function UILabel.create()
local label = UILabel.internalCreate()
label:setPhantom(true)
label:setFocusable(false)
label:setTextAlign(AlignLeft)
return label
end