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