tibia-client/modules/corelib/ui/uibutton.lua

14 lines
271 B
Lua

-- @docclass
UIButton = extends(UIWidget)
function UIButton.create()
local button = UIButton.internalCreate()
button:setFocusable(false)
return button
end
function UIButton:onMouseRelease(pos, button)
if self:isPressed() then return true end
return false
end