mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 09:39:21 +02:00
10 lines
200 B
Lua
10 lines
200 B
Lua
UILabel = extends(UIWidget)
|
|
|
|
function UILabel.create()
|
|
local label = UILabel.internalCreate()
|
|
label:setPhantom(true)
|
|
label:setFocusable(false)
|
|
label:setTextAlign(AlignLeft)
|
|
return label
|
|
end
|