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