mirror of
https://github.com/edubart/otclient.git
synced 2025-04-29 17:19:20 +02:00
19 lines
277 B
Lua
19 lines
277 B
Lua
TopMenu = {}
|
|
|
|
-- private variables
|
|
local topMenu
|
|
|
|
-- public functions
|
|
function TopMenu.create()
|
|
topMenu = UI.display('topmenu.otui')
|
|
end
|
|
|
|
function TopMenu.destroy()
|
|
topMenu:destroy()
|
|
topMenu = nil
|
|
end
|
|
|
|
function TopMenu.getButton(id)
|
|
return topMenu:getChildById(id)
|
|
end
|