otclient-redemption/modules/corelib/ui/uilabel.lua
2022-04-29 23:14:24 -03:00

10 lines
234 B
Lua

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