axmol/templates/lua-template-default/src/main.lua

17 lines
344 B
Lua
Raw Normal View History

2014-10-11 02:55:04 +08:00
2014-12-29 05:51:49 +08:00
cc.FileUtils:getInstance():setPopupNotify(false)
cc.FileUtils:getInstance():addSearchPath("src/")
cc.FileUtils:getInstance():addSearchPath("res/")
2014-10-11 02:55:04 +08:00
2014-12-29 05:51:49 +08:00
require "config"
2014-10-11 02:55:04 +08:00
require "cocos.init"
2014-03-10 19:33:57 +08:00
local function main()
2014-12-29 05:51:49 +08:00
require("app.MyApp"):create():run()
2014-03-10 19:33:57 +08:00
end
local status, msg = xpcall(main, __G__TRACKBACK__)
if not status then
2014-12-29 05:51:49 +08:00
print(msg)
end