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