tibia-client/data/modules/mainmenu/init.lua

17 lines
291 B
Lua
Raw Normal View History

2011-07-17 08:56:57 +02:00
require 'entergame'
function initializeApplication()
mainMenu = loadUI("ui/mainmenu")
end
function terminateApplication()
App.exit()
end
-- here is where everything starts
if not initialized then
initializeApplication()
App.onClose = terminateApplication
initialized = true
end