mirror of
https://github.com/edubart/otclient.git
synced 2025-05-01 01:59:21 +02:00
18 lines
292 B
Lua
18 lines
292 B
Lua
TopMenu = {}
|
|
|
|
-- private variables
|
|
local topMenu
|
|
|
|
-- public functions
|
|
function TopMenu.create()
|
|
topMenu = UI.loadAndDisplay("/topmenu/topmenu.otui")
|
|
end
|
|
|
|
function TopMenu.destroy()
|
|
topMenu:destroy()
|
|
topMenu = nil
|
|
end
|
|
|
|
function TopMenu.getButton(id)
|
|
return topMenu:getChildById(id)
|
|
end |