mirror of
https://github.com/edubart/otclient.git
synced 2025-04-30 17:49:21 +02:00
14 lines
210 B
Lua
14 lines
210 B
Lua
function Game.createMainInterface()
|
|
gameUi = loadUI('/game/ui/gameinterface.otui', UI.root)
|
|
end
|
|
|
|
function Game.onLogin()
|
|
|
|
end
|
|
|
|
function Game.onLogout()
|
|
gameUi:destroy()
|
|
gameUi = nil
|
|
mainMenu:show()
|
|
end
|