mirror of
https://github.com/mehah/otclient
synced 2026-08-15 16:29:06 -04:00
10 lines
234 B
Lua
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
|