2
0
mirror of https://github.com/OTCv8/otclientv8.git synced 2025-04-30 19:29:21 +02:00
2019-10-02 03:38:52 +02:00

11 lines
224 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