mirror of https://github.com/axmolengine/axmol.git
17 lines
344 B
Lua
17 lines
344 B
Lua
|
|
cc.FileUtils:getInstance():setPopupNotify(false)
|
|
cc.FileUtils:getInstance():addSearchPath("src/")
|
|
cc.FileUtils:getInstance():addSearchPath("res/")
|
|
|
|
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
|