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,13 @@
-- @docclass
UICheckBox = extends(UIWidget, "UICheckBox")
function UICheckBox.create()
local checkbox = UICheckBox.internalCreate()
checkbox:setFocusable(false)
checkbox:setTextAlign(AlignLeft)
return checkbox
end
function UICheckBox:onClick()
self:setChecked(not self:isChecked())
end