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,12 @@
-- @docclass
UIButton = extends(UIWidget, "UIButton")
function UIButton.create()
local button = UIButton.internalCreate()
button:setFocusable(false)
return button
end
function UIButton:onMouseRelease(pos, button)
return self:isPressed()
end