mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 01:29:21 +02:00
8 lines
149 B
Lua
8 lines
149 B
Lua
UIButton = extends(UIWidget)
|
|
|
|
function UIButton.create()
|
|
local button = UIButton.internalCreate()
|
|
button:setFocusable(false)
|
|
return button
|
|
end
|