local MyApp = class("MyApp", cc.mvc.AppBase)-- MyApp类是从AppBase类继承过来的,AppBase类是是Quick里的MVC架构中里的重要的一环


function MyApp:ctor()  --表示MyApp的构造函数
    MyApp.super.ctor(self)
end


function MyApp:run()   --MyApp类的run()函数
    CCFileUtils:sharedFileUtils():addSearchPath("res/")   --添加路径(所有的路径都在res中放着)
    self:enterScene("MainScene") --进入场景
end


return MyApp