commit client

This commit is contained in:
ErikasKontenis
2021-05-08 15:54:21 +03:00
parent 733f566e83
commit f05d5a1a9a
681 changed files with 313209 additions and 0 deletions

View File

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