mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 17:49:21 +02:00
10 lines
186 B
Lua
10 lines
186 B
Lua
-- place any code for testing purposes here
|
|
|
|
function init()
|
|
local box = UIComboBox.create()
|
|
box:setStyle('ComboBox')
|
|
box:moveTo({x=100, y=8})
|
|
UI.display(box)
|
|
end
|
|
|
|
addEvent(init) |