mirror of https://github.com/axmolengine/axmol.git
15 lines
246 B
Lua
15 lines
246 B
Lua
|
|
||
|
cc.FileUtils:getInstance():setPopupNotify(false)
|
||
|
|
||
|
require "config"
|
||
|
require "cocos.init"
|
||
|
|
||
|
local function main()
|
||
|
require("app.MyApp"):create():run()
|
||
|
end
|
||
|
|
||
|
local status, msg = xpcall(main, __G__TRACKBACK__)
|
||
|
if not status then
|
||
|
print(msg)
|
||
|
end
|