├── LICENSE ├── README.md ├── catchGold ├── .wing │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── bin-debug │ ├── BeginScene.js │ ├── BeginScene.js.map │ ├── Data.js │ ├── Data.js.map │ ├── Game.js │ ├── Game.js.map │ ├── GameEvent.js │ ├── GameEvent.js.map │ ├── Gold.js │ ├── Gold.js.map │ ├── HelpLayer.js │ ├── HelpLayer.js.map │ ├── LoadingUI.js │ ├── LoadingUI.js.map │ ├── Main.js │ ├── Main.js.map │ ├── Man.js │ ├── Man.js.map │ ├── OverScene.js │ ├── OverScene.js.map │ ├── RankScene.js │ ├── RankScene.js.map │ ├── Shi.js │ ├── Shi.js.map │ ├── TimerPanel.js │ └── TimerPanel.js.map ├── egretProperties.json ├── favicon.ico ├── index.html ├── libs │ └── modules │ │ ├── egret │ │ ├── egret.d.ts │ │ ├── egret.js │ │ ├── egret.min.js │ │ ├── egret.native.js │ │ ├── egret.native.min.js │ │ ├── egret.web.js │ │ └── egret.web.min.js │ │ ├── game │ │ ├── game.d.ts │ │ ├── game.js │ │ └── game.min.js │ │ ├── res │ │ ├── res.d.ts │ │ ├── res.js │ │ └── res.min.js │ │ └── tween │ │ ├── tween.d.ts │ │ ├── tween.js │ │ └── tween.min.js ├── manifest.json ├── promise │ └── bin │ │ ├── promise.js │ │ └── promise.min.js ├── resource │ ├── assets │ │ ├── 1.png │ │ ├── 1356a0713ac0df4.jpg │ │ ├── 2.png │ │ ├── 9.png │ │ ├── again.png │ │ ├── back.png │ │ ├── bg.jpg │ │ ├── bg.png │ │ ├── dabian.png │ │ ├── egret_icon.png │ │ ├── help.png │ │ ├── help1.png │ │ ├── lanzi.png │ │ ├── man.png │ │ ├── paihang.png │ │ ├── rank.png │ │ ├── red1.png │ │ ├── red2.png │ │ ├── return.png │ │ ├── rule.png │ │ ├── rules.png │ │ ├── star.jpg │ │ ├── start.png │ │ ├── title.png │ │ ├── tru.jpg │ │ ├── true.jpg │ │ └── true1.jpg │ ├── config │ │ └── description.json │ └── default.res.json ├── src │ ├── BeginScene.ts │ ├── Data.ts │ ├── Game.ts │ ├── GameEvent.ts │ ├── Gold.ts │ ├── HelpLayer.ts │ ├── LoadingUI.ts │ ├── Main.ts │ ├── Man.ts │ ├── OverScene.ts │ ├── RankScene.ts │ ├── Shi.ts │ └── TimerPanel.ts ├── template │ ├── runtime │ │ ├── native_loader.js │ │ ├── native_require.js │ │ └── runtime_loader.js │ └── web │ │ └── index.html ├── tsconfig.json └── wingProperties.json ├── earthRun ├── .wing │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── bin-debug │ ├── BeginScene.js │ ├── BeginScene.js.map │ ├── Data.js │ ├── Data.js.map │ ├── EnemyBall.js │ ├── EnemyBall.js.map │ ├── Game.js │ ├── Game.js.map │ ├── GameEvent.js │ ├── GameEvent.js.map │ ├── HelpLayer.js │ ├── HelpLayer.js.map │ ├── LoadingUI.js │ ├── LoadingUI.js.map │ ├── Main.js │ ├── Main.js.map │ ├── MyBall.js │ ├── MyBall.js.map │ ├── OverScene.js │ └── OverScene.js.map ├── egretProperties.json ├── favicon.ico ├── index.html ├── libs │ └── modules │ │ ├── egret │ │ ├── egret.d.ts │ │ ├── egret.js │ │ ├── egret.min.js │ │ ├── egret.native.js │ │ ├── egret.native.min.js │ │ ├── egret.web.js │ │ └── egret.web.min.js │ │ ├── game │ │ ├── game.d.ts │ │ ├── game.js │ │ └── game.min.js │ │ ├── res │ │ ├── res.d.ts │ │ ├── res.js │ │ └── res.min.js │ │ └── tween │ │ ├── tween.d.ts │ │ ├── tween.js │ │ └── tween.min.js ├── manifest.json ├── promise │ └── bin │ │ ├── promise.js │ │ └── promise.min.js ├── resource │ ├── assets │ │ ├── again.png │ │ ├── bg.jpg │ │ ├── earth.png │ │ ├── egret_icon.png │ │ ├── fire.png │ │ ├── help1.png │ │ ├── return.png │ │ ├── rules.png │ │ ├── star.jpg │ │ ├── start.png │ │ └── title.png │ ├── config │ │ └── description.json │ └── default.res.json ├── src │ ├── BeginScene.ts │ ├── Data.ts │ ├── EnemyBall.ts │ ├── Game.ts │ ├── GameEvent.ts │ ├── HelpLayer.ts │ ├── LoadingUI.ts │ ├── Main.ts │ ├── MyBall.ts │ └── OverScene.ts ├── template │ ├── runtime │ │ ├── native_loader.js │ │ ├── native_require.js │ │ └── runtime_loader.js │ └── web │ │ └── index.html ├── tsconfig.json └── wingProperties.json ├── fingerGuess ├── .wing │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── bin-debug │ ├── Game.js │ ├── Game.js.map │ ├── GameData.js │ ├── GameData.js.map │ ├── GameEvent.js │ ├── GameEvent.js.map │ ├── LoadingUI.js │ ├── LoadingUI.js.map │ ├── Main.js │ ├── Main.js.map │ ├── OverScene.js │ ├── OverScene.js.map │ ├── RankScene.js │ ├── RankScene.js.map │ ├── StartScene.js │ ├── StartScene.js.map │ ├── TimerPanel.js │ └── TimerPanel.js.map ├── egretProperties.json ├── favicon.ico ├── index.html ├── libs │ └── modules │ │ ├── egret │ │ ├── egret.d.ts │ │ ├── egret.js │ │ ├── egret.min.js │ │ ├── egret.native.js │ │ ├── egret.native.min.js │ │ ├── egret.web.js │ │ └── egret.web.min.js │ │ ├── game │ │ ├── game.d.ts │ │ ├── game.js │ │ └── game.min.js │ │ ├── res │ │ ├── res.d.ts │ │ ├── res.js │ │ └── res.min.js │ │ └── tween │ │ ├── tween.d.ts │ │ ├── tween.js │ │ └── tween.min.js ├── manifest.json ├── promise │ └── bin │ │ ├── promise.js │ │ └── promise.min.js ├── resource │ ├── assets │ │ ├── 5541c88bb1fd0_wx.jpg │ │ ├── back.png │ │ ├── bg.jpg │ │ ├── bg.png │ │ ├── btn_start.png │ │ ├── egret_icon.png │ │ ├── end.png │ │ ├── end1.png │ │ ├── fault.png │ │ ├── go.png │ │ ├── goon.png │ │ ├── home.png │ │ ├── left.png │ │ ├── left_press.png │ │ ├── logo.png │ │ ├── middle.png │ │ ├── middle_press.png │ │ ├── paper.png │ │ ├── pause.png │ │ ├── pause_bg.png │ │ ├── rank.png │ │ ├── ready.png │ │ ├── replay.png │ │ ├── replay_btn.png │ │ ├── right.png │ │ ├── right_press.png │ │ ├── rock.png │ │ ├── scissor.png │ │ ├── top.png │ │ └── true.png │ ├── config │ │ └── description.json │ └── default.res.json ├── src │ ├── Game.ts │ ├── GameData.ts │ ├── GameEvent.ts │ ├── LoadingUI.ts │ ├── Main.ts │ ├── OverScene.ts │ ├── RankScene.ts │ ├── StartScene.ts │ └── TimerPanel.ts ├── template │ ├── runtime │ │ ├── native_loader.js │ │ ├── native_require.js │ │ └── runtime_loader.js │ └── web │ │ └── index.html ├── tsconfig.json └── wingProperties.json └── football ├── .wing ├── launch.json ├── settings.json └── tasks.json ├── bin-debug ├── Ball.js ├── Ball.js.map ├── BeginScene.js ├── BeginScene.js.map ├── Data.js ├── Data.js.map ├── GameEvent.js ├── GameEvent.js.map ├── HelpLayer.js ├── HelpLayer.js.map ├── Length3.js ├── Length3.js.map ├── Length4.js ├── Length4.js.map ├── LoadingUI.js ├── LoadingUI.js.map ├── Main.js ├── Main.js.map ├── Man.js ├── Man.js.map ├── OverScene.js ├── OverScene.js.map ├── RankScene.js ├── RankScene.js.map ├── Test.js └── Test.js.map ├── egretProperties.json ├── favicon.ico ├── index.html ├── libs └── modules │ ├── egret │ ├── egret.d.ts │ ├── egret.js │ ├── egret.min.js │ ├── egret.native.js │ ├── egret.native.min.js │ ├── egret.web.js │ └── egret.web.min.js │ ├── game │ ├── game.d.ts │ ├── game.js │ └── game.min.js │ ├── res │ ├── res.d.ts │ ├── res.js │ └── res.min.js │ └── tween │ ├── tween.d.ts │ ├── tween.js │ └── tween.min.js ├── manifest.json ├── promise └── bin │ ├── promise.js │ └── promise.min.js ├── resource ├── assets │ ├── 1.jpg │ ├── 1484531275_265465.png │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── again1.png │ ├── back1.png │ ├── background2-sheet0.png │ ├── ball-sheet0.png │ ├── ball.png │ ├── bg.jpg │ ├── egret_icon.png │ ├── ghostplayer-sheet0.png │ ├── help1.png │ ├── koushao.mp3 │ ├── paihang.png │ ├── playbtn-sheet0.png │ ├── quitbtn-sheet0.png │ ├── rank1.png │ ├── rule.png │ ├── start1.png │ ├── title.png │ └── title2.png ├── config │ └── description.json └── default.res.json ├── src ├── Ball.ts ├── BeginScene.ts ├── Data.ts ├── GameEvent.ts ├── HelpLayer.ts ├── Length3.ts ├── Length4.ts ├── LoadingUI.ts ├── Main.ts ├── Man.ts ├── OverScene.ts ├── RankScene.ts └── Test.ts ├── template ├── runtime │ ├── native_loader.js │ ├── native_require.js │ └── runtime_loader.js └── web │ └── index.html ├── tsconfig.json └── wingProperties.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/README.md -------------------------------------------------------------------------------- /catchGold/.wing/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/.wing/launch.json -------------------------------------------------------------------------------- /catchGold/.wing/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/.wing/settings.json -------------------------------------------------------------------------------- /catchGold/.wing/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/.wing/tasks.json -------------------------------------------------------------------------------- /catchGold/bin-debug/BeginScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/BeginScene.js -------------------------------------------------------------------------------- /catchGold/bin-debug/BeginScene.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/BeginScene.js.map -------------------------------------------------------------------------------- /catchGold/bin-debug/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/Data.js -------------------------------------------------------------------------------- /catchGold/bin-debug/Data.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/Data.js.map -------------------------------------------------------------------------------- /catchGold/bin-debug/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/Game.js -------------------------------------------------------------------------------- /catchGold/bin-debug/Game.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/Game.js.map -------------------------------------------------------------------------------- /catchGold/bin-debug/GameEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/GameEvent.js -------------------------------------------------------------------------------- /catchGold/bin-debug/GameEvent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/GameEvent.js.map -------------------------------------------------------------------------------- /catchGold/bin-debug/Gold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/Gold.js -------------------------------------------------------------------------------- /catchGold/bin-debug/Gold.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/Gold.js.map -------------------------------------------------------------------------------- /catchGold/bin-debug/HelpLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/HelpLayer.js -------------------------------------------------------------------------------- /catchGold/bin-debug/HelpLayer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/HelpLayer.js.map -------------------------------------------------------------------------------- /catchGold/bin-debug/LoadingUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/LoadingUI.js -------------------------------------------------------------------------------- /catchGold/bin-debug/LoadingUI.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/LoadingUI.js.map -------------------------------------------------------------------------------- /catchGold/bin-debug/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/Main.js -------------------------------------------------------------------------------- /catchGold/bin-debug/Main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/Main.js.map -------------------------------------------------------------------------------- /catchGold/bin-debug/Man.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/Man.js -------------------------------------------------------------------------------- /catchGold/bin-debug/Man.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/Man.js.map -------------------------------------------------------------------------------- /catchGold/bin-debug/OverScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/OverScene.js -------------------------------------------------------------------------------- /catchGold/bin-debug/OverScene.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/OverScene.js.map -------------------------------------------------------------------------------- /catchGold/bin-debug/RankScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/RankScene.js -------------------------------------------------------------------------------- /catchGold/bin-debug/RankScene.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/RankScene.js.map -------------------------------------------------------------------------------- /catchGold/bin-debug/Shi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/Shi.js -------------------------------------------------------------------------------- /catchGold/bin-debug/Shi.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/Shi.js.map -------------------------------------------------------------------------------- /catchGold/bin-debug/TimerPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/TimerPanel.js -------------------------------------------------------------------------------- /catchGold/bin-debug/TimerPanel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/bin-debug/TimerPanel.js.map -------------------------------------------------------------------------------- /catchGold/egretProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/egretProperties.json -------------------------------------------------------------------------------- /catchGold/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/favicon.ico -------------------------------------------------------------------------------- /catchGold/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/index.html -------------------------------------------------------------------------------- /catchGold/libs/modules/egret/egret.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/egret/egret.d.ts -------------------------------------------------------------------------------- /catchGold/libs/modules/egret/egret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/egret/egret.js -------------------------------------------------------------------------------- /catchGold/libs/modules/egret/egret.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/egret/egret.min.js -------------------------------------------------------------------------------- /catchGold/libs/modules/egret/egret.native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/egret/egret.native.js -------------------------------------------------------------------------------- /catchGold/libs/modules/egret/egret.native.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/egret/egret.native.min.js -------------------------------------------------------------------------------- /catchGold/libs/modules/egret/egret.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/egret/egret.web.js -------------------------------------------------------------------------------- /catchGold/libs/modules/egret/egret.web.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/egret/egret.web.min.js -------------------------------------------------------------------------------- /catchGold/libs/modules/game/game.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/game/game.d.ts -------------------------------------------------------------------------------- /catchGold/libs/modules/game/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/game/game.js -------------------------------------------------------------------------------- /catchGold/libs/modules/game/game.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/game/game.min.js -------------------------------------------------------------------------------- /catchGold/libs/modules/res/res.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/res/res.d.ts -------------------------------------------------------------------------------- /catchGold/libs/modules/res/res.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/res/res.js -------------------------------------------------------------------------------- /catchGold/libs/modules/res/res.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/res/res.min.js -------------------------------------------------------------------------------- /catchGold/libs/modules/tween/tween.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/tween/tween.d.ts -------------------------------------------------------------------------------- /catchGold/libs/modules/tween/tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/tween/tween.js -------------------------------------------------------------------------------- /catchGold/libs/modules/tween/tween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/libs/modules/tween/tween.min.js -------------------------------------------------------------------------------- /catchGold/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/manifest.json -------------------------------------------------------------------------------- /catchGold/promise/bin/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/promise/bin/promise.js -------------------------------------------------------------------------------- /catchGold/promise/bin/promise.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/promise/bin/promise.min.js -------------------------------------------------------------------------------- /catchGold/resource/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/1.png -------------------------------------------------------------------------------- /catchGold/resource/assets/1356a0713ac0df4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/1356a0713ac0df4.jpg -------------------------------------------------------------------------------- /catchGold/resource/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/2.png -------------------------------------------------------------------------------- /catchGold/resource/assets/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/9.png -------------------------------------------------------------------------------- /catchGold/resource/assets/again.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/again.png -------------------------------------------------------------------------------- /catchGold/resource/assets/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/back.png -------------------------------------------------------------------------------- /catchGold/resource/assets/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/bg.jpg -------------------------------------------------------------------------------- /catchGold/resource/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/bg.png -------------------------------------------------------------------------------- /catchGold/resource/assets/dabian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/dabian.png -------------------------------------------------------------------------------- /catchGold/resource/assets/egret_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/egret_icon.png -------------------------------------------------------------------------------- /catchGold/resource/assets/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/help.png -------------------------------------------------------------------------------- /catchGold/resource/assets/help1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/help1.png -------------------------------------------------------------------------------- /catchGold/resource/assets/lanzi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/lanzi.png -------------------------------------------------------------------------------- /catchGold/resource/assets/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/man.png -------------------------------------------------------------------------------- /catchGold/resource/assets/paihang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/paihang.png -------------------------------------------------------------------------------- /catchGold/resource/assets/rank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/rank.png -------------------------------------------------------------------------------- /catchGold/resource/assets/red1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/red1.png -------------------------------------------------------------------------------- /catchGold/resource/assets/red2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/red2.png -------------------------------------------------------------------------------- /catchGold/resource/assets/return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/return.png -------------------------------------------------------------------------------- /catchGold/resource/assets/rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/rule.png -------------------------------------------------------------------------------- /catchGold/resource/assets/rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/rules.png -------------------------------------------------------------------------------- /catchGold/resource/assets/star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/star.jpg -------------------------------------------------------------------------------- /catchGold/resource/assets/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/start.png -------------------------------------------------------------------------------- /catchGold/resource/assets/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/title.png -------------------------------------------------------------------------------- /catchGold/resource/assets/tru.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/tru.jpg -------------------------------------------------------------------------------- /catchGold/resource/assets/true.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/true.jpg -------------------------------------------------------------------------------- /catchGold/resource/assets/true1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/assets/true1.jpg -------------------------------------------------------------------------------- /catchGold/resource/config/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/config/description.json -------------------------------------------------------------------------------- /catchGold/resource/default.res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/resource/default.res.json -------------------------------------------------------------------------------- /catchGold/src/BeginScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/src/BeginScene.ts -------------------------------------------------------------------------------- /catchGold/src/Data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/src/Data.ts -------------------------------------------------------------------------------- /catchGold/src/Game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/src/Game.ts -------------------------------------------------------------------------------- /catchGold/src/GameEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/src/GameEvent.ts -------------------------------------------------------------------------------- /catchGold/src/Gold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/src/Gold.ts -------------------------------------------------------------------------------- /catchGold/src/HelpLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/src/HelpLayer.ts -------------------------------------------------------------------------------- /catchGold/src/LoadingUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/src/LoadingUI.ts -------------------------------------------------------------------------------- /catchGold/src/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/src/Main.ts -------------------------------------------------------------------------------- /catchGold/src/Man.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/src/Man.ts -------------------------------------------------------------------------------- /catchGold/src/OverScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/src/OverScene.ts -------------------------------------------------------------------------------- /catchGold/src/RankScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/src/RankScene.ts -------------------------------------------------------------------------------- /catchGold/src/Shi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/src/Shi.ts -------------------------------------------------------------------------------- /catchGold/src/TimerPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/src/TimerPanel.ts -------------------------------------------------------------------------------- /catchGold/template/runtime/native_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/template/runtime/native_loader.js -------------------------------------------------------------------------------- /catchGold/template/runtime/native_require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/template/runtime/native_require.js -------------------------------------------------------------------------------- /catchGold/template/runtime/runtime_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/template/runtime/runtime_loader.js -------------------------------------------------------------------------------- /catchGold/template/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/template/web/index.html -------------------------------------------------------------------------------- /catchGold/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/tsconfig.json -------------------------------------------------------------------------------- /catchGold/wingProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/catchGold/wingProperties.json -------------------------------------------------------------------------------- /earthRun/.wing/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/.wing/launch.json -------------------------------------------------------------------------------- /earthRun/.wing/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/.wing/settings.json -------------------------------------------------------------------------------- /earthRun/.wing/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/.wing/tasks.json -------------------------------------------------------------------------------- /earthRun/bin-debug/BeginScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/BeginScene.js -------------------------------------------------------------------------------- /earthRun/bin-debug/BeginScene.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/BeginScene.js.map -------------------------------------------------------------------------------- /earthRun/bin-debug/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/Data.js -------------------------------------------------------------------------------- /earthRun/bin-debug/Data.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/Data.js.map -------------------------------------------------------------------------------- /earthRun/bin-debug/EnemyBall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/EnemyBall.js -------------------------------------------------------------------------------- /earthRun/bin-debug/EnemyBall.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/EnemyBall.js.map -------------------------------------------------------------------------------- /earthRun/bin-debug/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/Game.js -------------------------------------------------------------------------------- /earthRun/bin-debug/Game.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/Game.js.map -------------------------------------------------------------------------------- /earthRun/bin-debug/GameEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/GameEvent.js -------------------------------------------------------------------------------- /earthRun/bin-debug/GameEvent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/GameEvent.js.map -------------------------------------------------------------------------------- /earthRun/bin-debug/HelpLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/HelpLayer.js -------------------------------------------------------------------------------- /earthRun/bin-debug/HelpLayer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/HelpLayer.js.map -------------------------------------------------------------------------------- /earthRun/bin-debug/LoadingUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/LoadingUI.js -------------------------------------------------------------------------------- /earthRun/bin-debug/LoadingUI.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/LoadingUI.js.map -------------------------------------------------------------------------------- /earthRun/bin-debug/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/Main.js -------------------------------------------------------------------------------- /earthRun/bin-debug/Main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/Main.js.map -------------------------------------------------------------------------------- /earthRun/bin-debug/MyBall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/MyBall.js -------------------------------------------------------------------------------- /earthRun/bin-debug/MyBall.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/MyBall.js.map -------------------------------------------------------------------------------- /earthRun/bin-debug/OverScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/OverScene.js -------------------------------------------------------------------------------- /earthRun/bin-debug/OverScene.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/bin-debug/OverScene.js.map -------------------------------------------------------------------------------- /earthRun/egretProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/egretProperties.json -------------------------------------------------------------------------------- /earthRun/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/favicon.ico -------------------------------------------------------------------------------- /earthRun/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/index.html -------------------------------------------------------------------------------- /earthRun/libs/modules/egret/egret.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/egret/egret.d.ts -------------------------------------------------------------------------------- /earthRun/libs/modules/egret/egret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/egret/egret.js -------------------------------------------------------------------------------- /earthRun/libs/modules/egret/egret.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/egret/egret.min.js -------------------------------------------------------------------------------- /earthRun/libs/modules/egret/egret.native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/egret/egret.native.js -------------------------------------------------------------------------------- /earthRun/libs/modules/egret/egret.native.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/egret/egret.native.min.js -------------------------------------------------------------------------------- /earthRun/libs/modules/egret/egret.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/egret/egret.web.js -------------------------------------------------------------------------------- /earthRun/libs/modules/egret/egret.web.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/egret/egret.web.min.js -------------------------------------------------------------------------------- /earthRun/libs/modules/game/game.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/game/game.d.ts -------------------------------------------------------------------------------- /earthRun/libs/modules/game/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/game/game.js -------------------------------------------------------------------------------- /earthRun/libs/modules/game/game.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/game/game.min.js -------------------------------------------------------------------------------- /earthRun/libs/modules/res/res.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/res/res.d.ts -------------------------------------------------------------------------------- /earthRun/libs/modules/res/res.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/res/res.js -------------------------------------------------------------------------------- /earthRun/libs/modules/res/res.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/res/res.min.js -------------------------------------------------------------------------------- /earthRun/libs/modules/tween/tween.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/tween/tween.d.ts -------------------------------------------------------------------------------- /earthRun/libs/modules/tween/tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/tween/tween.js -------------------------------------------------------------------------------- /earthRun/libs/modules/tween/tween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/libs/modules/tween/tween.min.js -------------------------------------------------------------------------------- /earthRun/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/manifest.json -------------------------------------------------------------------------------- /earthRun/promise/bin/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/promise/bin/promise.js -------------------------------------------------------------------------------- /earthRun/promise/bin/promise.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/promise/bin/promise.min.js -------------------------------------------------------------------------------- /earthRun/resource/assets/again.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/resource/assets/again.png -------------------------------------------------------------------------------- /earthRun/resource/assets/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/resource/assets/bg.jpg -------------------------------------------------------------------------------- /earthRun/resource/assets/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/resource/assets/earth.png -------------------------------------------------------------------------------- /earthRun/resource/assets/egret_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/resource/assets/egret_icon.png -------------------------------------------------------------------------------- /earthRun/resource/assets/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/resource/assets/fire.png -------------------------------------------------------------------------------- /earthRun/resource/assets/help1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/resource/assets/help1.png -------------------------------------------------------------------------------- /earthRun/resource/assets/return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/resource/assets/return.png -------------------------------------------------------------------------------- /earthRun/resource/assets/rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/resource/assets/rules.png -------------------------------------------------------------------------------- /earthRun/resource/assets/star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/resource/assets/star.jpg -------------------------------------------------------------------------------- /earthRun/resource/assets/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/resource/assets/start.png -------------------------------------------------------------------------------- /earthRun/resource/assets/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/resource/assets/title.png -------------------------------------------------------------------------------- /earthRun/resource/config/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/resource/config/description.json -------------------------------------------------------------------------------- /earthRun/resource/default.res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/resource/default.res.json -------------------------------------------------------------------------------- /earthRun/src/BeginScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/src/BeginScene.ts -------------------------------------------------------------------------------- /earthRun/src/Data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/src/Data.ts -------------------------------------------------------------------------------- /earthRun/src/EnemyBall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/src/EnemyBall.ts -------------------------------------------------------------------------------- /earthRun/src/Game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/src/Game.ts -------------------------------------------------------------------------------- /earthRun/src/GameEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/src/GameEvent.ts -------------------------------------------------------------------------------- /earthRun/src/HelpLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/src/HelpLayer.ts -------------------------------------------------------------------------------- /earthRun/src/LoadingUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/src/LoadingUI.ts -------------------------------------------------------------------------------- /earthRun/src/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/src/Main.ts -------------------------------------------------------------------------------- /earthRun/src/MyBall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/src/MyBall.ts -------------------------------------------------------------------------------- /earthRun/src/OverScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/src/OverScene.ts -------------------------------------------------------------------------------- /earthRun/template/runtime/native_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/template/runtime/native_loader.js -------------------------------------------------------------------------------- /earthRun/template/runtime/native_require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/template/runtime/native_require.js -------------------------------------------------------------------------------- /earthRun/template/runtime/runtime_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/template/runtime/runtime_loader.js -------------------------------------------------------------------------------- /earthRun/template/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/template/web/index.html -------------------------------------------------------------------------------- /earthRun/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/tsconfig.json -------------------------------------------------------------------------------- /earthRun/wingProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/earthRun/wingProperties.json -------------------------------------------------------------------------------- /fingerGuess/.wing/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/.wing/launch.json -------------------------------------------------------------------------------- /fingerGuess/.wing/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/.wing/settings.json -------------------------------------------------------------------------------- /fingerGuess/.wing/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/.wing/tasks.json -------------------------------------------------------------------------------- /fingerGuess/bin-debug/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/Game.js -------------------------------------------------------------------------------- /fingerGuess/bin-debug/Game.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/Game.js.map -------------------------------------------------------------------------------- /fingerGuess/bin-debug/GameData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/GameData.js -------------------------------------------------------------------------------- /fingerGuess/bin-debug/GameData.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/GameData.js.map -------------------------------------------------------------------------------- /fingerGuess/bin-debug/GameEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/GameEvent.js -------------------------------------------------------------------------------- /fingerGuess/bin-debug/GameEvent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/GameEvent.js.map -------------------------------------------------------------------------------- /fingerGuess/bin-debug/LoadingUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/LoadingUI.js -------------------------------------------------------------------------------- /fingerGuess/bin-debug/LoadingUI.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/LoadingUI.js.map -------------------------------------------------------------------------------- /fingerGuess/bin-debug/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/Main.js -------------------------------------------------------------------------------- /fingerGuess/bin-debug/Main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/Main.js.map -------------------------------------------------------------------------------- /fingerGuess/bin-debug/OverScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/OverScene.js -------------------------------------------------------------------------------- /fingerGuess/bin-debug/OverScene.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/OverScene.js.map -------------------------------------------------------------------------------- /fingerGuess/bin-debug/RankScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/RankScene.js -------------------------------------------------------------------------------- /fingerGuess/bin-debug/RankScene.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/RankScene.js.map -------------------------------------------------------------------------------- /fingerGuess/bin-debug/StartScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/StartScene.js -------------------------------------------------------------------------------- /fingerGuess/bin-debug/StartScene.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/StartScene.js.map -------------------------------------------------------------------------------- /fingerGuess/bin-debug/TimerPanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/TimerPanel.js -------------------------------------------------------------------------------- /fingerGuess/bin-debug/TimerPanel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/bin-debug/TimerPanel.js.map -------------------------------------------------------------------------------- /fingerGuess/egretProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/egretProperties.json -------------------------------------------------------------------------------- /fingerGuess/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/favicon.ico -------------------------------------------------------------------------------- /fingerGuess/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/index.html -------------------------------------------------------------------------------- /fingerGuess/libs/modules/egret/egret.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/egret/egret.d.ts -------------------------------------------------------------------------------- /fingerGuess/libs/modules/egret/egret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/egret/egret.js -------------------------------------------------------------------------------- /fingerGuess/libs/modules/egret/egret.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/egret/egret.min.js -------------------------------------------------------------------------------- /fingerGuess/libs/modules/egret/egret.native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/egret/egret.native.js -------------------------------------------------------------------------------- /fingerGuess/libs/modules/egret/egret.native.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/egret/egret.native.min.js -------------------------------------------------------------------------------- /fingerGuess/libs/modules/egret/egret.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/egret/egret.web.js -------------------------------------------------------------------------------- /fingerGuess/libs/modules/egret/egret.web.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/egret/egret.web.min.js -------------------------------------------------------------------------------- /fingerGuess/libs/modules/game/game.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/game/game.d.ts -------------------------------------------------------------------------------- /fingerGuess/libs/modules/game/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/game/game.js -------------------------------------------------------------------------------- /fingerGuess/libs/modules/game/game.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/game/game.min.js -------------------------------------------------------------------------------- /fingerGuess/libs/modules/res/res.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/res/res.d.ts -------------------------------------------------------------------------------- /fingerGuess/libs/modules/res/res.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/res/res.js -------------------------------------------------------------------------------- /fingerGuess/libs/modules/res/res.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/res/res.min.js -------------------------------------------------------------------------------- /fingerGuess/libs/modules/tween/tween.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/tween/tween.d.ts -------------------------------------------------------------------------------- /fingerGuess/libs/modules/tween/tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/tween/tween.js -------------------------------------------------------------------------------- /fingerGuess/libs/modules/tween/tween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/libs/modules/tween/tween.min.js -------------------------------------------------------------------------------- /fingerGuess/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/manifest.json -------------------------------------------------------------------------------- /fingerGuess/promise/bin/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/promise/bin/promise.js -------------------------------------------------------------------------------- /fingerGuess/promise/bin/promise.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/promise/bin/promise.min.js -------------------------------------------------------------------------------- /fingerGuess/resource/assets/5541c88bb1fd0_wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/5541c88bb1fd0_wx.jpg -------------------------------------------------------------------------------- /fingerGuess/resource/assets/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/back.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/bg.jpg -------------------------------------------------------------------------------- /fingerGuess/resource/assets/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/bg.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/btn_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/btn_start.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/egret_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/egret_icon.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/end.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/end1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/end1.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/fault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/fault.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/go.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/goon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/goon.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/home.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/left.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/left_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/left_press.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/logo.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/middle.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/middle_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/middle_press.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/paper.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/pause.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/pause_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/pause_bg.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/rank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/rank.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/ready.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/replay.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/replay_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/replay_btn.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/right.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/right_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/right_press.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/rock.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/scissor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/scissor.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/top.png -------------------------------------------------------------------------------- /fingerGuess/resource/assets/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/assets/true.png -------------------------------------------------------------------------------- /fingerGuess/resource/config/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/config/description.json -------------------------------------------------------------------------------- /fingerGuess/resource/default.res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/resource/default.res.json -------------------------------------------------------------------------------- /fingerGuess/src/Game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/src/Game.ts -------------------------------------------------------------------------------- /fingerGuess/src/GameData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/src/GameData.ts -------------------------------------------------------------------------------- /fingerGuess/src/GameEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/src/GameEvent.ts -------------------------------------------------------------------------------- /fingerGuess/src/LoadingUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/src/LoadingUI.ts -------------------------------------------------------------------------------- /fingerGuess/src/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/src/Main.ts -------------------------------------------------------------------------------- /fingerGuess/src/OverScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/src/OverScene.ts -------------------------------------------------------------------------------- /fingerGuess/src/RankScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/src/RankScene.ts -------------------------------------------------------------------------------- /fingerGuess/src/StartScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/src/StartScene.ts -------------------------------------------------------------------------------- /fingerGuess/src/TimerPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/src/TimerPanel.ts -------------------------------------------------------------------------------- /fingerGuess/template/runtime/native_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/template/runtime/native_loader.js -------------------------------------------------------------------------------- /fingerGuess/template/runtime/native_require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/template/runtime/native_require.js -------------------------------------------------------------------------------- /fingerGuess/template/runtime/runtime_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/template/runtime/runtime_loader.js -------------------------------------------------------------------------------- /fingerGuess/template/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/template/web/index.html -------------------------------------------------------------------------------- /fingerGuess/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/tsconfig.json -------------------------------------------------------------------------------- /fingerGuess/wingProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/fingerGuess/wingProperties.json -------------------------------------------------------------------------------- /football/.wing/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/.wing/launch.json -------------------------------------------------------------------------------- /football/.wing/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/.wing/settings.json -------------------------------------------------------------------------------- /football/.wing/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/.wing/tasks.json -------------------------------------------------------------------------------- /football/bin-debug/Ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/Ball.js -------------------------------------------------------------------------------- /football/bin-debug/Ball.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/Ball.js.map -------------------------------------------------------------------------------- /football/bin-debug/BeginScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/BeginScene.js -------------------------------------------------------------------------------- /football/bin-debug/BeginScene.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/BeginScene.js.map -------------------------------------------------------------------------------- /football/bin-debug/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/Data.js -------------------------------------------------------------------------------- /football/bin-debug/Data.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/Data.js.map -------------------------------------------------------------------------------- /football/bin-debug/GameEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/GameEvent.js -------------------------------------------------------------------------------- /football/bin-debug/GameEvent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/GameEvent.js.map -------------------------------------------------------------------------------- /football/bin-debug/HelpLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/HelpLayer.js -------------------------------------------------------------------------------- /football/bin-debug/HelpLayer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/HelpLayer.js.map -------------------------------------------------------------------------------- /football/bin-debug/Length3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/Length3.js -------------------------------------------------------------------------------- /football/bin-debug/Length3.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/Length3.js.map -------------------------------------------------------------------------------- /football/bin-debug/Length4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/Length4.js -------------------------------------------------------------------------------- /football/bin-debug/Length4.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/Length4.js.map -------------------------------------------------------------------------------- /football/bin-debug/LoadingUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/LoadingUI.js -------------------------------------------------------------------------------- /football/bin-debug/LoadingUI.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/LoadingUI.js.map -------------------------------------------------------------------------------- /football/bin-debug/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/Main.js -------------------------------------------------------------------------------- /football/bin-debug/Main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/Main.js.map -------------------------------------------------------------------------------- /football/bin-debug/Man.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/Man.js -------------------------------------------------------------------------------- /football/bin-debug/Man.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/Man.js.map -------------------------------------------------------------------------------- /football/bin-debug/OverScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/OverScene.js -------------------------------------------------------------------------------- /football/bin-debug/OverScene.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/OverScene.js.map -------------------------------------------------------------------------------- /football/bin-debug/RankScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/RankScene.js -------------------------------------------------------------------------------- /football/bin-debug/RankScene.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/RankScene.js.map -------------------------------------------------------------------------------- /football/bin-debug/Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/Test.js -------------------------------------------------------------------------------- /football/bin-debug/Test.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/bin-debug/Test.js.map -------------------------------------------------------------------------------- /football/egretProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/egretProperties.json -------------------------------------------------------------------------------- /football/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/favicon.ico -------------------------------------------------------------------------------- /football/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/index.html -------------------------------------------------------------------------------- /football/libs/modules/egret/egret.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/egret/egret.d.ts -------------------------------------------------------------------------------- /football/libs/modules/egret/egret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/egret/egret.js -------------------------------------------------------------------------------- /football/libs/modules/egret/egret.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/egret/egret.min.js -------------------------------------------------------------------------------- /football/libs/modules/egret/egret.native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/egret/egret.native.js -------------------------------------------------------------------------------- /football/libs/modules/egret/egret.native.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/egret/egret.native.min.js -------------------------------------------------------------------------------- /football/libs/modules/egret/egret.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/egret/egret.web.js -------------------------------------------------------------------------------- /football/libs/modules/egret/egret.web.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/egret/egret.web.min.js -------------------------------------------------------------------------------- /football/libs/modules/game/game.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/game/game.d.ts -------------------------------------------------------------------------------- /football/libs/modules/game/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/game/game.js -------------------------------------------------------------------------------- /football/libs/modules/game/game.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/game/game.min.js -------------------------------------------------------------------------------- /football/libs/modules/res/res.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/res/res.d.ts -------------------------------------------------------------------------------- /football/libs/modules/res/res.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/res/res.js -------------------------------------------------------------------------------- /football/libs/modules/res/res.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/res/res.min.js -------------------------------------------------------------------------------- /football/libs/modules/tween/tween.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/tween/tween.d.ts -------------------------------------------------------------------------------- /football/libs/modules/tween/tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/tween/tween.js -------------------------------------------------------------------------------- /football/libs/modules/tween/tween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/libs/modules/tween/tween.min.js -------------------------------------------------------------------------------- /football/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/manifest.json -------------------------------------------------------------------------------- /football/promise/bin/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/promise/bin/promise.js -------------------------------------------------------------------------------- /football/promise/bin/promise.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/promise/bin/promise.min.js -------------------------------------------------------------------------------- /football/resource/assets/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/1.jpg -------------------------------------------------------------------------------- /football/resource/assets/1484531275_265465.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/1484531275_265465.png -------------------------------------------------------------------------------- /football/resource/assets/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/2.jpg -------------------------------------------------------------------------------- /football/resource/assets/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/3.jpg -------------------------------------------------------------------------------- /football/resource/assets/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/4.jpg -------------------------------------------------------------------------------- /football/resource/assets/again1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/again1.png -------------------------------------------------------------------------------- /football/resource/assets/back1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/back1.png -------------------------------------------------------------------------------- /football/resource/assets/background2-sheet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/background2-sheet0.png -------------------------------------------------------------------------------- /football/resource/assets/ball-sheet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/ball-sheet0.png -------------------------------------------------------------------------------- /football/resource/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/ball.png -------------------------------------------------------------------------------- /football/resource/assets/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/bg.jpg -------------------------------------------------------------------------------- /football/resource/assets/egret_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/egret_icon.png -------------------------------------------------------------------------------- /football/resource/assets/ghostplayer-sheet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/ghostplayer-sheet0.png -------------------------------------------------------------------------------- /football/resource/assets/help1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/help1.png -------------------------------------------------------------------------------- /football/resource/assets/koushao.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/koushao.mp3 -------------------------------------------------------------------------------- /football/resource/assets/paihang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/paihang.png -------------------------------------------------------------------------------- /football/resource/assets/playbtn-sheet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/playbtn-sheet0.png -------------------------------------------------------------------------------- /football/resource/assets/quitbtn-sheet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/quitbtn-sheet0.png -------------------------------------------------------------------------------- /football/resource/assets/rank1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/rank1.png -------------------------------------------------------------------------------- /football/resource/assets/rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/rule.png -------------------------------------------------------------------------------- /football/resource/assets/start1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/start1.png -------------------------------------------------------------------------------- /football/resource/assets/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/title.png -------------------------------------------------------------------------------- /football/resource/assets/title2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/assets/title2.png -------------------------------------------------------------------------------- /football/resource/config/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/config/description.json -------------------------------------------------------------------------------- /football/resource/default.res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/resource/default.res.json -------------------------------------------------------------------------------- /football/src/Ball.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/src/Ball.ts -------------------------------------------------------------------------------- /football/src/BeginScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/src/BeginScene.ts -------------------------------------------------------------------------------- /football/src/Data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/src/Data.ts -------------------------------------------------------------------------------- /football/src/GameEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/src/GameEvent.ts -------------------------------------------------------------------------------- /football/src/HelpLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/src/HelpLayer.ts -------------------------------------------------------------------------------- /football/src/Length3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/src/Length3.ts -------------------------------------------------------------------------------- /football/src/Length4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/src/Length4.ts -------------------------------------------------------------------------------- /football/src/LoadingUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/src/LoadingUI.ts -------------------------------------------------------------------------------- /football/src/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/src/Main.ts -------------------------------------------------------------------------------- /football/src/Man.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/src/Man.ts -------------------------------------------------------------------------------- /football/src/OverScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/src/OverScene.ts -------------------------------------------------------------------------------- /football/src/RankScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/src/RankScene.ts -------------------------------------------------------------------------------- /football/src/Test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/src/Test.ts -------------------------------------------------------------------------------- /football/template/runtime/native_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/template/runtime/native_loader.js -------------------------------------------------------------------------------- /football/template/runtime/native_require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/template/runtime/native_require.js -------------------------------------------------------------------------------- /football/template/runtime/runtime_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/template/runtime/runtime_loader.js -------------------------------------------------------------------------------- /football/template/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/template/web/index.html -------------------------------------------------------------------------------- /football/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/tsconfig.json -------------------------------------------------------------------------------- /football/wingProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chenyinkai/egret-games/HEAD/football/wingProperties.json --------------------------------------------------------------------------------