├── .gitignore ├── MVCHelloWorld-Part01 ├── README.md ├── index.html ├── js │ └── app.js ├── project.json └── res │ ├── CloseNormal.png │ ├── CloseSelected.png │ ├── HelloWorld.png │ ├── animationbuttonnormal.png │ ├── animationbuttonpressed.png │ └── favicon.ico ├── MVCHelloWorld-Part02 ├── README.md ├── index.html ├── js │ ├── app-all.js │ ├── app.js │ └── test │ │ └── calcu.js ├── project.json └── res │ ├── CloseNormal.png │ ├── CloseSelected.png │ ├── HelloWorld.png │ ├── animationbuttonnormal.png │ ├── animationbuttonpressed.png │ └── favicon.ico ├── MVCHelloWorld-Part03 ├── README.md ├── images │ ├── 010.png │ └── 020.png ├── index.html ├── js │ ├── AppFacade.js │ ├── app-all.js │ ├── app.config │ ├── app.js │ ├── controller │ │ └── command │ │ │ └── StartupCommand.js │ ├── model │ │ └── proxy │ │ │ └── AppConfigProxy.js │ ├── test │ │ └── calcu.js │ └── view │ │ └── mediator │ │ └── AppMediator.js ├── project.json └── res │ ├── CloseNormal.png │ ├── CloseSelected.png │ ├── HelloWorld.png │ ├── animationbuttonnormal.png │ ├── animationbuttonpressed.png │ └── favicon.ico ├── MVCHelloWorld-Part04 ├── README.md ├── images │ ├── 010.png │ └── 020.png ├── index.html ├── js │ ├── AppFacade.js │ ├── app-all.js │ ├── app.config │ ├── app.js │ ├── controller │ │ └── command │ │ │ ├── InjectFSMCommand.js │ │ │ ├── PrepControllerCommand.js │ │ │ ├── PrepModelCommand.js │ │ │ ├── PrepViewCommand.js │ │ │ └── StartupCommand.js │ ├── model │ │ └── proxy │ │ │ └── AppConfigProxy.js │ ├── profile │ │ └── flow │ │ │ ├── SceneAction.js │ │ │ ├── SceneFsm.js │ │ │ ├── SceneState.js │ │ │ └── SceneTransition.js │ ├── test │ │ └── calcu.js │ └── view │ │ └── mediator │ │ └── AppMediator.js ├── project.json └── res │ ├── CloseNormal.png │ ├── CloseSelected.png │ ├── HelloWorld.png │ ├── animationbuttonnormal.png │ ├── animationbuttonpressed.png │ └── favicon.ico ├── MVCHelloWorld-Part05 ├── README.md ├── data │ └── book.json ├── images │ ├── 010.png │ └── 020.png ├── index.html ├── js │ ├── AppFacade.js │ ├── app.config │ ├── app.js │ ├── controller │ │ └── command │ │ │ ├── InjectFSMCommand.js │ │ │ ├── PrepControllerCommand.js │ │ │ ├── PrepModelCommand.js │ │ │ ├── PrepViewCommand.js │ │ │ └── StartupCommand.js │ ├── model │ │ ├── domain │ │ │ └── Rectangle.js │ │ └── proxy │ │ │ ├── AppConfigProxy.js │ │ │ ├── BookProxy.js │ │ │ ├── GameProxy.js │ │ │ └── RectangleProxy.js │ ├── profile │ │ └── flow │ │ │ ├── SceneAction.js │ │ │ ├── SceneFsm.js │ │ │ ├── SceneState.js │ │ │ └── SceneTransition.js │ └── test │ │ └── calcu.js ├── project.json └── res │ ├── CloseNormal.png │ ├── CloseSelected.png │ ├── HelloWorld.png │ ├── animationbuttonnormal.png │ ├── animationbuttonpressed.png │ └── favicon.ico ├── MVCHelloWorld-Part06 ├── README.md ├── data │ └── book.json ├── images │ ├── 010.png │ └── 020.png ├── index.html ├── js │ ├── AppFacade.js │ ├── app-all.js │ ├── app.config │ ├── app.js │ ├── controller │ │ └── command │ │ │ ├── InjectFSMCommand.js │ │ │ ├── PrepControllerCommand.js │ │ │ ├── PrepModelCommand.js │ │ │ ├── PrepViewCommand.js │ │ │ └── StartupCommand.js │ ├── model │ │ ├── domain │ │ │ └── Rectangle.js │ │ └── proxy │ │ │ ├── AppConfigProxy.js │ │ │ ├── BookProxy.js │ │ │ ├── GameProxy.js │ │ │ └── RectangleProxy.js │ ├── profile │ │ └── flow │ │ │ ├── SceneAction.js │ │ │ ├── SceneFsm.js │ │ │ ├── SceneState.js │ │ │ └── SceneTransition.js │ ├── test │ │ └── calcu.js │ └── view │ │ ├── component │ │ ├── BookLayer.js │ │ ├── DrawLayer.js │ │ ├── GameLayer.js │ │ ├── GameOverLayer.js │ │ ├── HelloLayer.js │ │ └── MenuLayer.js │ │ ├── mediator │ │ ├── BookMediator.js │ │ ├── DirectorMediator.js │ │ ├── DrawMediator.js │ │ ├── GameMediator.js │ │ ├── GameOverMediator.js │ │ ├── HelloMediator.js │ │ ├── MenuMediator.js │ │ └── SceneMediator.js │ │ └── ui │ │ └── Resource.js ├── project.json └── res │ ├── CloseNormal.png │ ├── CloseSelected.png │ ├── HelloWorld.png │ ├── animationbuttonnormal.png │ ├── animationbuttonpressed.png │ └── favicon.ico ├── MVCHelloWorld-Part07 ├── README.md ├── data │ └── book.json ├── images │ ├── 010.png │ └── 020.png ├── index.html ├── js │ ├── AppFacade.js │ ├── app-all.js │ ├── app.config │ ├── app.js │ ├── controller │ │ └── command │ │ │ ├── InjectFSMCommand.js │ │ │ ├── PrepControllerCommand.js │ │ │ ├── PrepModelCommand.js │ │ │ ├── PrepViewCommand.js │ │ │ └── StartupCommand.js │ ├── model │ │ ├── domain │ │ │ └── Rectangle.js │ │ └── proxy │ │ │ ├── AppConfigProxy.js │ │ │ ├── BookProxy.js │ │ │ ├── GameProxy.js │ │ │ └── RectangleProxy.js │ ├── profile │ │ └── flow │ │ │ ├── SceneAction.js │ │ │ ├── SceneFsm.js │ │ │ ├── SceneState.js │ │ │ └── SceneTransition.js │ ├── test │ │ └── calcu.js │ └── view │ │ ├── component │ │ ├── BookLayer.js │ │ ├── DrawLayer.js │ │ ├── GameLayer.js │ │ ├── GameOverLayer.js │ │ ├── HelloLayer.js │ │ └── MenuLayer.js │ │ ├── mediator │ │ ├── BookMediator.js │ │ ├── DirectorMediator.js │ │ ├── DrawMediator.js │ │ ├── GameMediator.js │ │ ├── GameOverMediator.js │ │ ├── HelloMediator.js │ │ ├── MenuMediator.js │ │ └── SceneMediator.js │ │ └── ui │ │ └── Resource.js ├── project.json └── res │ ├── CloseNormal.png │ ├── CloseSelected.png │ ├── HelloWorld.png │ ├── animationbuttonnormal.png │ ├── animationbuttonpressed.png │ └── favicon.ico ├── MVCHelloWorld-Part08 └── README.md ├── MVCHelloWorld-Part11 ├── README.md ├── index.html ├── js │ ├── AppFacade.js │ ├── app-all.js │ ├── app.config │ ├── app.js │ ├── controller │ │ └── command │ │ │ ├── InjectFSMCommand.js │ │ │ ├── PrepControllerCommand.js │ │ │ ├── PrepModelCommand.js │ │ │ ├── PrepViewCommand.js │ │ │ └── StartupCommand.js │ ├── model │ │ └── proxy │ │ │ ├── AppConfigProxy.js │ │ │ └── GameProxy.js │ ├── profile │ │ └── flow │ │ │ ├── SceneAction.js │ │ │ ├── SceneFsm.js │ │ │ ├── SceneState.js │ │ │ └── SceneTransition.js │ └── view │ │ ├── component │ │ ├── BackgroundLayer.js │ │ ├── BearLayer.js │ │ ├── BearSprite.js │ │ ├── GameLayer.js │ │ ├── PenguinLayer.js │ │ └── PenguinSprite.js │ │ ├── mediator │ │ ├── DirectorMediator.js │ │ ├── GameMediator.js │ │ └── SceneMediator.js │ │ └── ui │ │ ├── FreeFallAction.js │ │ └── Resource.js ├── project.json └── res │ ├── Thumbs.db │ ├── background.jpg │ ├── background2.JPG │ ├── button_bottom_pressed_2.png │ ├── button_bottom_pressed_3.png │ ├── button_more.png │ ├── button_retry.png │ ├── idle.png │ ├── milestone.png │ ├── penguin_fly_1.png │ ├── penguin_fly_2.png │ ├── penguin_fly_3.png │ ├── penguin_idle.png │ ├── penguin_jump_1.png │ ├── penguin_jump_2.png │ ├── penguin_jump_3.png │ ├── penguin_jump_4.png │ ├── penguin_jump_5.png │ ├── penguin_jump_6.png │ ├── penguin_landing_1.png │ ├── penguin_landing_2.png │ ├── penguin_landing_3.png │ ├── penguin_landing_4.png │ ├── penguin_nick.png │ ├── penguin_step_left_1.png │ ├── penguin_step_left_2.png │ ├── penguin_step_left_3.png │ ├── penguin_step_right_1.png │ ├── penguin_step_right_2.png │ ├── penguin_step_right_3.png │ ├── penguin_vertical_landing_1.png │ ├── penguin_vertical_landing_2.png │ ├── penguin_vertical_landing_3.png │ ├── penguin_vertical_landing_4.png │ ├── ready_1.png │ ├── ready_2.png │ ├── ready_3.png │ ├── ready_4.png │ ├── ready_5.png │ ├── strike_1.png │ ├── strike_2.png │ ├── strike_3.png │ ├── strike_4.png │ ├── strike_5.png │ ├── strike_f_1.png │ ├── strike_f_2.png │ ├── strike_f_3.png │ ├── strike_f_4.png │ ├── strike_s_1.png │ ├── strike_s_2.png │ ├── strike_s_3.png │ ├── strike_s_4.png │ └── strike_s_5.png ├── MVCHelloWorld ├── README.md ├── data │ └── book.json ├── index.html ├── js │ ├── AppFacade.js │ ├── app-all.js │ ├── app.config │ ├── app.js │ ├── controller │ │ └── command │ │ │ ├── InjectFSMCommand.js │ │ │ ├── PrepControllerCommand.js │ │ │ ├── PrepModelCommand.js │ │ │ ├── PrepViewCommand.js │ │ │ └── StartupCommand.js │ ├── model │ │ ├── domain │ │ │ └── Rectangle.js │ │ └── proxy │ │ │ ├── AppConfigProxy.js │ │ │ ├── BookProxy.js │ │ │ ├── GameProxy.js │ │ │ └── RectangleProxy.js │ ├── profile │ │ └── flow │ │ │ ├── SceneAction.js │ │ │ ├── SceneFsm.js │ │ │ ├── SceneState.js │ │ │ └── SceneTransition.js │ └── view │ │ ├── component │ │ ├── BookLayer.js │ │ ├── DrawLayer.js │ │ ├── GameLayer.js │ │ ├── GameOverLayer.js │ │ ├── HelloLayer.js │ │ └── MenuLayer.js │ │ ├── mediator │ │ ├── BookMediator.js │ │ ├── DirectorMediator.js │ │ ├── DrawMediator.js │ │ ├── GameMediator.js │ │ ├── GameOverMediator.js │ │ ├── HelloMediator.js │ │ ├── MenuMediator.js │ │ └── SceneMediator.js │ │ └── ui │ │ └── Resource.js ├── project.json └── res │ ├── CloseNormal.png │ ├── CloseSelected.png │ ├── HelloWorld.png │ ├── animationbuttonnormal.png │ ├── animationbuttonpressed.png │ └── favicon.ico └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MVCHelloWorld-Part01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part01/README.md -------------------------------------------------------------------------------- /MVCHelloWorld-Part01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part01/index.html -------------------------------------------------------------------------------- /MVCHelloWorld-Part01/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part01/js/app.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part01/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part01/project.json -------------------------------------------------------------------------------- /MVCHelloWorld-Part01/res/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part01/res/CloseNormal.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part01/res/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part01/res/CloseSelected.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part01/res/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part01/res/HelloWorld.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part01/res/animationbuttonnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part01/res/animationbuttonnormal.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part01/res/animationbuttonpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part01/res/animationbuttonpressed.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part01/res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part01/res/favicon.ico -------------------------------------------------------------------------------- /MVCHelloWorld-Part02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part02/README.md -------------------------------------------------------------------------------- /MVCHelloWorld-Part02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part02/index.html -------------------------------------------------------------------------------- /MVCHelloWorld-Part02/js/app-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part02/js/app-all.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part02/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part02/js/app.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part02/js/test/calcu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part02/js/test/calcu.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part02/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part02/project.json -------------------------------------------------------------------------------- /MVCHelloWorld-Part02/res/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part02/res/CloseNormal.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part02/res/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part02/res/CloseSelected.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part02/res/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part02/res/HelloWorld.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part02/res/animationbuttonnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part02/res/animationbuttonnormal.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part02/res/animationbuttonpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part02/res/animationbuttonpressed.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part02/res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part02/res/favicon.ico -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/README.md -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/images/010.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/images/020.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/index.html -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/js/AppFacade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/js/AppFacade.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/js/app-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/js/app-all.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/js/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/js/app.config -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/js/app.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/js/controller/command/StartupCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/js/controller/command/StartupCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/js/model/proxy/AppConfigProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/js/model/proxy/AppConfigProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/js/test/calcu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/js/test/calcu.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/js/view/mediator/AppMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/js/view/mediator/AppMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/project.json -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/res/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/res/CloseNormal.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/res/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/res/CloseSelected.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/res/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/res/HelloWorld.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/res/animationbuttonnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/res/animationbuttonnormal.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/res/animationbuttonpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/res/animationbuttonpressed.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part03/res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part03/res/favicon.ico -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/README.md -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/images/010.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/images/020.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/index.html -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/AppFacade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/AppFacade.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/app-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/app-all.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/app.config -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/app.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/controller/command/InjectFSMCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/controller/command/InjectFSMCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/controller/command/PrepControllerCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/controller/command/PrepControllerCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/controller/command/PrepModelCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/controller/command/PrepModelCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/controller/command/PrepViewCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/controller/command/PrepViewCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/controller/command/StartupCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/controller/command/StartupCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/model/proxy/AppConfigProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/model/proxy/AppConfigProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/profile/flow/SceneAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/profile/flow/SceneAction.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/profile/flow/SceneFsm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/profile/flow/SceneFsm.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/profile/flow/SceneState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/profile/flow/SceneState.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/profile/flow/SceneTransition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/profile/flow/SceneTransition.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/test/calcu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/test/calcu.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/js/view/mediator/AppMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/js/view/mediator/AppMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/project.json -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/res/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/res/CloseNormal.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/res/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/res/CloseSelected.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/res/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/res/HelloWorld.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/res/animationbuttonnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/res/animationbuttonnormal.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/res/animationbuttonpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/res/animationbuttonpressed.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part04/res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part04/res/favicon.ico -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/README.md -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/data/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/data/book.json -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/images/010.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/images/020.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/index.html -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/AppFacade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/AppFacade.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/app.config -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/app.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/controller/command/InjectFSMCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/controller/command/InjectFSMCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/controller/command/PrepControllerCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/controller/command/PrepControllerCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/controller/command/PrepModelCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/controller/command/PrepModelCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/controller/command/PrepViewCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/controller/command/PrepViewCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/controller/command/StartupCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/controller/command/StartupCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/model/domain/Rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/model/domain/Rectangle.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/model/proxy/AppConfigProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/model/proxy/AppConfigProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/model/proxy/BookProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/model/proxy/BookProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/model/proxy/GameProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/model/proxy/GameProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/model/proxy/RectangleProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/model/proxy/RectangleProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/profile/flow/SceneAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/profile/flow/SceneAction.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/profile/flow/SceneFsm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/profile/flow/SceneFsm.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/profile/flow/SceneState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/profile/flow/SceneState.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/profile/flow/SceneTransition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/profile/flow/SceneTransition.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/js/test/calcu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/js/test/calcu.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/project.json -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/res/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/res/CloseNormal.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/res/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/res/CloseSelected.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/res/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/res/HelloWorld.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/res/animationbuttonnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/res/animationbuttonnormal.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/res/animationbuttonpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/res/animationbuttonpressed.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part05/res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part05/res/favicon.ico -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/README.md -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/data/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/data/book.json -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/images/010.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/images/020.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/index.html -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/AppFacade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/AppFacade.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/app-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/app-all.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/app.config -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/app.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/controller/command/InjectFSMCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/controller/command/InjectFSMCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/controller/command/PrepControllerCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/controller/command/PrepControllerCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/controller/command/PrepModelCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/controller/command/PrepModelCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/controller/command/PrepViewCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/controller/command/PrepViewCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/controller/command/StartupCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/controller/command/StartupCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/model/domain/Rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/model/domain/Rectangle.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/model/proxy/AppConfigProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/model/proxy/AppConfigProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/model/proxy/BookProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/model/proxy/BookProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/model/proxy/GameProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/model/proxy/GameProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/model/proxy/RectangleProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/model/proxy/RectangleProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/profile/flow/SceneAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/profile/flow/SceneAction.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/profile/flow/SceneFsm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/profile/flow/SceneFsm.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/profile/flow/SceneState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/profile/flow/SceneState.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/profile/flow/SceneTransition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/profile/flow/SceneTransition.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/test/calcu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/test/calcu.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/component/BookLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/component/BookLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/component/DrawLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/component/DrawLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/component/GameLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/component/GameLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/component/GameOverLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/component/GameOverLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/component/HelloLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/component/HelloLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/component/MenuLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/component/MenuLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/mediator/BookMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/mediator/BookMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/mediator/DirectorMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/mediator/DirectorMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/mediator/DrawMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/mediator/DrawMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/mediator/GameMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/mediator/GameMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/mediator/GameOverMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/mediator/GameOverMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/mediator/HelloMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/mediator/HelloMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/mediator/MenuMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/mediator/MenuMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/mediator/SceneMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/mediator/SceneMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/js/view/ui/Resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/js/view/ui/Resource.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/project.json -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/res/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/res/CloseNormal.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/res/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/res/CloseSelected.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/res/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/res/HelloWorld.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/res/animationbuttonnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/res/animationbuttonnormal.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/res/animationbuttonpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/res/animationbuttonpressed.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part06/res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part06/res/favicon.ico -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/README.md -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/data/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/data/book.json -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/images/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/images/010.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/images/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/images/020.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/index.html -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/AppFacade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/AppFacade.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/app-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/app-all.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/app.config -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/app.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/controller/command/InjectFSMCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/controller/command/InjectFSMCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/controller/command/PrepControllerCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/controller/command/PrepControllerCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/controller/command/PrepModelCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/controller/command/PrepModelCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/controller/command/PrepViewCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/controller/command/PrepViewCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/controller/command/StartupCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/controller/command/StartupCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/model/domain/Rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/model/domain/Rectangle.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/model/proxy/AppConfigProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/model/proxy/AppConfigProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/model/proxy/BookProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/model/proxy/BookProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/model/proxy/GameProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/model/proxy/GameProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/model/proxy/RectangleProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/model/proxy/RectangleProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/profile/flow/SceneAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/profile/flow/SceneAction.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/profile/flow/SceneFsm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/profile/flow/SceneFsm.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/profile/flow/SceneState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/profile/flow/SceneState.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/profile/flow/SceneTransition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/profile/flow/SceneTransition.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/test/calcu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/test/calcu.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/component/BookLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/component/BookLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/component/DrawLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/component/DrawLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/component/GameLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/component/GameLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/component/GameOverLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/component/GameOverLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/component/HelloLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/component/HelloLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/component/MenuLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/component/MenuLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/mediator/BookMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/mediator/BookMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/mediator/DirectorMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/mediator/DirectorMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/mediator/DrawMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/mediator/DrawMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/mediator/GameMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/mediator/GameMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/mediator/GameOverMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/mediator/GameOverMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/mediator/HelloMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/mediator/HelloMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/mediator/MenuMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/mediator/MenuMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/mediator/SceneMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/mediator/SceneMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/js/view/ui/Resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/js/view/ui/Resource.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/project.json -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/res/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/res/CloseNormal.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/res/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/res/CloseSelected.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/res/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/res/HelloWorld.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/res/animationbuttonnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/res/animationbuttonnormal.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/res/animationbuttonpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/res/animationbuttonpressed.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part07/res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part07/res/favicon.ico -------------------------------------------------------------------------------- /MVCHelloWorld-Part08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part08/README.md -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/README.md -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/index.html -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/AppFacade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/AppFacade.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/app-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/app-all.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/app.config -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/app.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/controller/command/InjectFSMCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/controller/command/InjectFSMCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/controller/command/PrepControllerCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/controller/command/PrepControllerCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/controller/command/PrepModelCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/controller/command/PrepModelCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/controller/command/PrepViewCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/controller/command/PrepViewCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/controller/command/StartupCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/controller/command/StartupCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/model/proxy/AppConfigProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/model/proxy/AppConfigProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/model/proxy/GameProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/model/proxy/GameProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/profile/flow/SceneAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/profile/flow/SceneAction.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/profile/flow/SceneFsm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/profile/flow/SceneFsm.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/profile/flow/SceneState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/profile/flow/SceneState.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/profile/flow/SceneTransition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/profile/flow/SceneTransition.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/view/component/BackgroundLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/view/component/BackgroundLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/view/component/BearLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/view/component/BearLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/view/component/BearSprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/view/component/BearSprite.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/view/component/GameLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/view/component/GameLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/view/component/PenguinLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/view/component/PenguinLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/view/component/PenguinSprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/view/component/PenguinSprite.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/view/mediator/DirectorMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/view/mediator/DirectorMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/view/mediator/GameMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/view/mediator/GameMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/view/mediator/SceneMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/view/mediator/SceneMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/view/ui/FreeFallAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/view/ui/FreeFallAction.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/js/view/ui/Resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/js/view/ui/Resource.js -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/project.json -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/Thumbs.db -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/background.jpg -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/background2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/background2.JPG -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/button_bottom_pressed_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/button_bottom_pressed_2.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/button_bottom_pressed_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/button_bottom_pressed_3.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/button_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/button_more.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/button_retry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/button_retry.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/idle.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/milestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/milestone.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_fly_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_fly_1.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_fly_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_fly_2.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_fly_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_fly_3.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_idle.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_jump_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_jump_1.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_jump_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_jump_2.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_jump_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_jump_3.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_jump_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_jump_4.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_jump_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_jump_5.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_jump_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_jump_6.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_landing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_landing_1.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_landing_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_landing_2.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_landing_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_landing_3.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_landing_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_landing_4.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_nick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_nick.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_step_left_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_step_left_1.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_step_left_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_step_left_2.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_step_left_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_step_left_3.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_step_right_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_step_right_1.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_step_right_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_step_right_2.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_step_right_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_step_right_3.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_vertical_landing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_vertical_landing_1.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_vertical_landing_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_vertical_landing_2.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_vertical_landing_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_vertical_landing_3.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/penguin_vertical_landing_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/penguin_vertical_landing_4.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/ready_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/ready_1.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/ready_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/ready_2.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/ready_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/ready_3.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/ready_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/ready_4.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/ready_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/ready_5.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/strike_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/strike_1.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/strike_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/strike_2.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/strike_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/strike_3.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/strike_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/strike_4.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/strike_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/strike_5.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/strike_f_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/strike_f_1.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/strike_f_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/strike_f_2.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/strike_f_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/strike_f_3.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/strike_f_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/strike_f_4.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/strike_s_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/strike_s_1.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/strike_s_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/strike_s_2.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/strike_s_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/strike_s_3.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/strike_s_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/strike_s_4.png -------------------------------------------------------------------------------- /MVCHelloWorld-Part11/res/strike_s_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld-Part11/res/strike_s_5.png -------------------------------------------------------------------------------- /MVCHelloWorld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/README.md -------------------------------------------------------------------------------- /MVCHelloWorld/data/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/data/book.json -------------------------------------------------------------------------------- /MVCHelloWorld/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/index.html -------------------------------------------------------------------------------- /MVCHelloWorld/js/AppFacade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/AppFacade.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/app-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/app-all.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/app.config -------------------------------------------------------------------------------- /MVCHelloWorld/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/app.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/controller/command/InjectFSMCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/controller/command/InjectFSMCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/controller/command/PrepControllerCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/controller/command/PrepControllerCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/controller/command/PrepModelCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/controller/command/PrepModelCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/controller/command/PrepViewCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/controller/command/PrepViewCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/controller/command/StartupCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/controller/command/StartupCommand.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/model/domain/Rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/model/domain/Rectangle.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/model/proxy/AppConfigProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/model/proxy/AppConfigProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/model/proxy/BookProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/model/proxy/BookProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/model/proxy/GameProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/model/proxy/GameProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/model/proxy/RectangleProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/model/proxy/RectangleProxy.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/profile/flow/SceneAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/profile/flow/SceneAction.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/profile/flow/SceneFsm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/profile/flow/SceneFsm.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/profile/flow/SceneState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/profile/flow/SceneState.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/profile/flow/SceneTransition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/profile/flow/SceneTransition.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/component/BookLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/component/BookLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/component/DrawLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/component/DrawLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/component/GameLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/component/GameLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/component/GameOverLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/component/GameOverLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/component/HelloLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/component/HelloLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/component/MenuLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/component/MenuLayer.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/mediator/BookMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/mediator/BookMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/mediator/DirectorMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/mediator/DirectorMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/mediator/DrawMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/mediator/DrawMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/mediator/GameMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/mediator/GameMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/mediator/GameOverMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/mediator/GameOverMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/mediator/HelloMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/mediator/HelloMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/mediator/MenuMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/mediator/MenuMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/mediator/SceneMediator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/mediator/SceneMediator.js -------------------------------------------------------------------------------- /MVCHelloWorld/js/view/ui/Resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/js/view/ui/Resource.js -------------------------------------------------------------------------------- /MVCHelloWorld/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/project.json -------------------------------------------------------------------------------- /MVCHelloWorld/res/CloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/res/CloseNormal.png -------------------------------------------------------------------------------- /MVCHelloWorld/res/CloseSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/res/CloseSelected.png -------------------------------------------------------------------------------- /MVCHelloWorld/res/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/res/HelloWorld.png -------------------------------------------------------------------------------- /MVCHelloWorld/res/animationbuttonnormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/res/animationbuttonnormal.png -------------------------------------------------------------------------------- /MVCHelloWorld/res/animationbuttonpressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/res/animationbuttonpressed.png -------------------------------------------------------------------------------- /MVCHelloWorld/res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/MVCHelloWorld/res/favicon.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyoung/GeneCocosMVC/HEAD/README.md --------------------------------------------------------------------------------