mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 09:39:21 +02:00
21 lines
353 B
Lua
21 lines
353 B
Lua
-- menu state
|
|
function onEnterMenuState()
|
|
mainMenu = UI.load("mainmenu.yml")
|
|
end
|
|
|
|
function onLeaveMenuState()
|
|
|
|
end
|
|
|
|
function onApplicationClose()
|
|
onLeaveMenuState()
|
|
App.exit()
|
|
end
|
|
|
|
-- here is where everything starts
|
|
if not initialStateLoaded then
|
|
onEnterMenuState()
|
|
App.onClose = onApplicationClose
|
|
initialStateLoaded = true
|
|
end
|