mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 01:29:21 +02:00
11 lines
213 B
Lua
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
|