otclient/modules/corelib/ui/uilabel.lua
2012-06-25 19:19:17 -03:00

11 lines
213 B
Lua

-- @docclass
UILabel = extends(UIWidget)
function UILabel.create()
local label = UILabel.internalCreate()
label:setPhantom(true)
label:setFocusable(false)
label:setTextAlign(AlignLeft)
return label
end