├── .wing ├── launch.json ├── settings.json └── tasks.json ├── README.md ├── bin-debug ├── AssetAdapter.js ├── LoadingUI.js ├── Main.js ├── Platform.js ├── ThemeAdapter.js └── game │ ├── GameApp.js │ ├── GameConst.js │ ├── GameControl.js │ ├── comment │ ├── MyButton.js │ ├── Role.js │ ├── Shake.js │ └── SpecialNumber.js │ └── layer │ ├── GameOverLayer.js │ ├── GameScenesLayer.js │ └── StartGameLayer.js ├── bin-release └── web │ ├── 101101 │ ├── index.html │ ├── js │ │ ├── assetsmanager.min_ac6b67d6.js │ │ ├── egret.min_de42afe8.js │ │ ├── egret.web.min_22d454fa.js │ │ ├── eui.min_22447123.js │ │ ├── main.min_40028269.js │ │ ├── promise.min_83a6a5d.js │ │ └── tween.min_6c5a88f9.js │ ├── manifest.json │ └── resource │ │ ├── assets │ │ ├── egret_icon.png │ │ └── game │ │ │ ├── bg.jpg │ │ │ ├── bg_qiang.png │ │ │ ├── btn_rank.png │ │ │ ├── egret_icon.png │ │ │ ├── loading_bg.jpg │ │ │ ├── loading_logo.png │ │ │ ├── pengyouquan.png │ │ │ ├── role │ │ │ ├── Sprites.json │ │ │ ├── Sprites.png │ │ │ ├── newAssets.json │ │ │ └── newAssets.png │ │ │ ├── shang.jpg │ │ │ ├── ui │ │ │ ├── ui.json │ │ │ └── ui.png │ │ │ └── xia.jpg │ │ ├── config │ │ └── description.json │ │ ├── default.res.json │ │ └── default.thm.json │ └── 180824154858 │ ├── index.html │ ├── js │ ├── assetsmanager.min_ac6b67d6.js │ ├── egret.min_de42afe8.js │ ├── egret.web.min_22d454fa.js │ ├── eui.min_22447123.js │ ├── main.min_40028269.js │ ├── promise.min_83a6a5d.js │ └── tween.min_6c5a88f9.js │ ├── manifest.json │ └── resource │ ├── assets │ ├── egret_icon.png │ └── game │ │ ├── bg.jpg │ │ ├── bg_qiang.png │ │ ├── btn_rank.png │ │ ├── egret_icon.png │ │ ├── loading_bg.jpg │ │ ├── loading_logo.png │ │ ├── pengyouquan.png │ │ ├── role │ │ ├── Sprites.json │ │ ├── Sprites.png │ │ ├── newAssets.json │ │ └── newAssets.png │ │ ├── shang.jpg │ │ ├── ui │ │ ├── ui.json │ │ └── ui.png │ │ └── xia.jpg │ ├── config │ └── description.json │ ├── default.res.json │ └── default.thm.json ├── egretProperties.json ├── favicon.ico ├── index.html ├── libs ├── exml.e.d.ts └── modules │ ├── assetsmanager │ ├── assetsmanager.d.ts │ ├── assetsmanager.js │ └── assetsmanager.min.js │ ├── egret │ ├── egret.d.ts │ ├── egret.js │ ├── egret.min.js │ ├── egret.web.js │ └── egret.web.min.js │ ├── eui │ ├── eui.d.ts │ ├── eui.js │ └── eui.min.js │ ├── promise │ ├── promise.js │ └── promise.min.js │ └── tween │ ├── tween.d.ts │ ├── tween.js │ └── tween.min.js ├── manifest.json ├── resource ├── assets │ ├── egret_icon.png │ └── game │ │ ├── bg.jpg │ │ ├── bg_qiang.png │ │ ├── btn_rank.png │ │ ├── egret_icon.png │ │ ├── loading_bg.jpg │ │ ├── loading_logo.png │ │ ├── pengyouquan.png │ │ ├── role │ │ ├── Sprites.json │ │ ├── Sprites.png │ │ ├── newAssets.json │ │ └── newAssets.png │ │ ├── shang.jpg │ │ ├── ui │ │ ├── ui.json │ │ └── ui.png │ │ └── xia.jpg ├── config │ └── description.json ├── default.res.json └── default.thm.json ├── scripts ├── api.d.ts ├── bricks │ └── bricks.ts ├── config.android.ts ├── config.bricks.ts ├── config.ios.ts ├── config.ts ├── config.wxgame.ts ├── myplugin.ts ├── node.d.ts ├── tsconfig.json └── wxgame │ └── wxgame.ts ├── src ├── AssetAdapter.ts ├── LoadingUI.ts ├── Main.ts ├── Platform.ts ├── ThemeAdapter.ts └── game │ ├── GameApp.ts │ ├── GameConst.ts │ ├── GameControl.ts │ ├── comment │ ├── MyButton.ts │ ├── Role.ts │ ├── Shake.ts │ └── SpecialNumber.ts │ └── layer │ ├── GameOverLayer.ts │ ├── GameScenesLayer.ts │ └── StartGameLayer.ts ├── template ├── runtime │ ├── native_loader.js │ ├── native_require.js │ └── runtime_loader.js └── web │ └── index.html ├── tsconfig.json └── wingProperties.json /.wing/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/.wing/launch.json -------------------------------------------------------------------------------- /.wing/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/.wing/settings.json -------------------------------------------------------------------------------- /.wing/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/.wing/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RoomRun 2 | Egret密室逃生小游戏 3 | -------------------------------------------------------------------------------- /bin-debug/AssetAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/AssetAdapter.js -------------------------------------------------------------------------------- /bin-debug/LoadingUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/LoadingUI.js -------------------------------------------------------------------------------- /bin-debug/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/Main.js -------------------------------------------------------------------------------- /bin-debug/Platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/Platform.js -------------------------------------------------------------------------------- /bin-debug/ThemeAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/ThemeAdapter.js -------------------------------------------------------------------------------- /bin-debug/game/GameApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/game/GameApp.js -------------------------------------------------------------------------------- /bin-debug/game/GameConst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/game/GameConst.js -------------------------------------------------------------------------------- /bin-debug/game/GameControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/game/GameControl.js -------------------------------------------------------------------------------- /bin-debug/game/comment/MyButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/game/comment/MyButton.js -------------------------------------------------------------------------------- /bin-debug/game/comment/Role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/game/comment/Role.js -------------------------------------------------------------------------------- /bin-debug/game/comment/Shake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/game/comment/Shake.js -------------------------------------------------------------------------------- /bin-debug/game/comment/SpecialNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/game/comment/SpecialNumber.js -------------------------------------------------------------------------------- /bin-debug/game/layer/GameOverLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/game/layer/GameOverLayer.js -------------------------------------------------------------------------------- /bin-debug/game/layer/GameScenesLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/game/layer/GameScenesLayer.js -------------------------------------------------------------------------------- /bin-debug/game/layer/StartGameLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-debug/game/layer/StartGameLayer.js -------------------------------------------------------------------------------- /bin-release/web/101101/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/index.html -------------------------------------------------------------------------------- /bin-release/web/101101/js/assetsmanager.min_ac6b67d6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/js/assetsmanager.min_ac6b67d6.js -------------------------------------------------------------------------------- /bin-release/web/101101/js/egret.min_de42afe8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/js/egret.min_de42afe8.js -------------------------------------------------------------------------------- /bin-release/web/101101/js/egret.web.min_22d454fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/js/egret.web.min_22d454fa.js -------------------------------------------------------------------------------- /bin-release/web/101101/js/eui.min_22447123.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/js/eui.min_22447123.js -------------------------------------------------------------------------------- /bin-release/web/101101/js/main.min_40028269.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/js/main.min_40028269.js -------------------------------------------------------------------------------- /bin-release/web/101101/js/promise.min_83a6a5d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/js/promise.min_83a6a5d.js -------------------------------------------------------------------------------- /bin-release/web/101101/js/tween.min_6c5a88f9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/js/tween.min_6c5a88f9.js -------------------------------------------------------------------------------- /bin-release/web/101101/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/manifest.json -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/egret_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/egret_icon.png -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/bg.jpg -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/bg_qiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/bg_qiang.png -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/btn_rank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/btn_rank.png -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/egret_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/egret_icon.png -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/loading_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/loading_bg.jpg -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/loading_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/loading_logo.png -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/pengyouquan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/pengyouquan.png -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/role/Sprites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/role/Sprites.json -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/role/Sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/role/Sprites.png -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/role/newAssets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/role/newAssets.json -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/role/newAssets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/role/newAssets.png -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/shang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/shang.jpg -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/ui/ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/ui/ui.json -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/ui/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/ui/ui.png -------------------------------------------------------------------------------- /bin-release/web/101101/resource/assets/game/xia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/assets/game/xia.jpg -------------------------------------------------------------------------------- /bin-release/web/101101/resource/config/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/config/description.json -------------------------------------------------------------------------------- /bin-release/web/101101/resource/default.res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/default.res.json -------------------------------------------------------------------------------- /bin-release/web/101101/resource/default.thm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/101101/resource/default.thm.json -------------------------------------------------------------------------------- /bin-release/web/180824154858/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/index.html -------------------------------------------------------------------------------- /bin-release/web/180824154858/js/assetsmanager.min_ac6b67d6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/js/assetsmanager.min_ac6b67d6.js -------------------------------------------------------------------------------- /bin-release/web/180824154858/js/egret.min_de42afe8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/js/egret.min_de42afe8.js -------------------------------------------------------------------------------- /bin-release/web/180824154858/js/egret.web.min_22d454fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/js/egret.web.min_22d454fa.js -------------------------------------------------------------------------------- /bin-release/web/180824154858/js/eui.min_22447123.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/js/eui.min_22447123.js -------------------------------------------------------------------------------- /bin-release/web/180824154858/js/main.min_40028269.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/js/main.min_40028269.js -------------------------------------------------------------------------------- /bin-release/web/180824154858/js/promise.min_83a6a5d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/js/promise.min_83a6a5d.js -------------------------------------------------------------------------------- /bin-release/web/180824154858/js/tween.min_6c5a88f9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/js/tween.min_6c5a88f9.js -------------------------------------------------------------------------------- /bin-release/web/180824154858/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/manifest.json -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/egret_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/egret_icon.png -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/bg.jpg -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/bg_qiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/bg_qiang.png -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/btn_rank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/btn_rank.png -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/egret_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/egret_icon.png -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/loading_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/loading_bg.jpg -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/loading_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/loading_logo.png -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/pengyouquan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/pengyouquan.png -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/role/Sprites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/role/Sprites.json -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/role/Sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/role/Sprites.png -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/role/newAssets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/role/newAssets.json -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/role/newAssets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/role/newAssets.png -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/shang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/shang.jpg -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/ui/ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/ui/ui.json -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/ui/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/ui/ui.png -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/assets/game/xia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/assets/game/xia.jpg -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/config/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/config/description.json -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/default.res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/default.res.json -------------------------------------------------------------------------------- /bin-release/web/180824154858/resource/default.thm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/bin-release/web/180824154858/resource/default.thm.json -------------------------------------------------------------------------------- /egretProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/egretProperties.json -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/index.html -------------------------------------------------------------------------------- /libs/exml.e.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/exml.e.d.ts -------------------------------------------------------------------------------- /libs/modules/assetsmanager/assetsmanager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/assetsmanager/assetsmanager.d.ts -------------------------------------------------------------------------------- /libs/modules/assetsmanager/assetsmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/assetsmanager/assetsmanager.js -------------------------------------------------------------------------------- /libs/modules/assetsmanager/assetsmanager.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/assetsmanager/assetsmanager.min.js -------------------------------------------------------------------------------- /libs/modules/egret/egret.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/egret/egret.d.ts -------------------------------------------------------------------------------- /libs/modules/egret/egret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/egret/egret.js -------------------------------------------------------------------------------- /libs/modules/egret/egret.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/egret/egret.min.js -------------------------------------------------------------------------------- /libs/modules/egret/egret.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/egret/egret.web.js -------------------------------------------------------------------------------- /libs/modules/egret/egret.web.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/egret/egret.web.min.js -------------------------------------------------------------------------------- /libs/modules/eui/eui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/eui/eui.d.ts -------------------------------------------------------------------------------- /libs/modules/eui/eui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/eui/eui.js -------------------------------------------------------------------------------- /libs/modules/eui/eui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/eui/eui.min.js -------------------------------------------------------------------------------- /libs/modules/promise/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/promise/promise.js -------------------------------------------------------------------------------- /libs/modules/promise/promise.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/promise/promise.min.js -------------------------------------------------------------------------------- /libs/modules/tween/tween.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/tween/tween.d.ts -------------------------------------------------------------------------------- /libs/modules/tween/tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/tween/tween.js -------------------------------------------------------------------------------- /libs/modules/tween/tween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/libs/modules/tween/tween.min.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/manifest.json -------------------------------------------------------------------------------- /resource/assets/egret_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/egret_icon.png -------------------------------------------------------------------------------- /resource/assets/game/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/bg.jpg -------------------------------------------------------------------------------- /resource/assets/game/bg_qiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/bg_qiang.png -------------------------------------------------------------------------------- /resource/assets/game/btn_rank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/btn_rank.png -------------------------------------------------------------------------------- /resource/assets/game/egret_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/egret_icon.png -------------------------------------------------------------------------------- /resource/assets/game/loading_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/loading_bg.jpg -------------------------------------------------------------------------------- /resource/assets/game/loading_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/loading_logo.png -------------------------------------------------------------------------------- /resource/assets/game/pengyouquan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/pengyouquan.png -------------------------------------------------------------------------------- /resource/assets/game/role/Sprites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/role/Sprites.json -------------------------------------------------------------------------------- /resource/assets/game/role/Sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/role/Sprites.png -------------------------------------------------------------------------------- /resource/assets/game/role/newAssets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/role/newAssets.json -------------------------------------------------------------------------------- /resource/assets/game/role/newAssets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/role/newAssets.png -------------------------------------------------------------------------------- /resource/assets/game/shang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/shang.jpg -------------------------------------------------------------------------------- /resource/assets/game/ui/ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/ui/ui.json -------------------------------------------------------------------------------- /resource/assets/game/ui/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/ui/ui.png -------------------------------------------------------------------------------- /resource/assets/game/xia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/assets/game/xia.jpg -------------------------------------------------------------------------------- /resource/config/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/config/description.json -------------------------------------------------------------------------------- /resource/default.res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/default.res.json -------------------------------------------------------------------------------- /resource/default.thm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/resource/default.thm.json -------------------------------------------------------------------------------- /scripts/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/scripts/api.d.ts -------------------------------------------------------------------------------- /scripts/bricks/bricks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/scripts/bricks/bricks.ts -------------------------------------------------------------------------------- /scripts/config.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/scripts/config.android.ts -------------------------------------------------------------------------------- /scripts/config.bricks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/scripts/config.bricks.ts -------------------------------------------------------------------------------- /scripts/config.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/scripts/config.ios.ts -------------------------------------------------------------------------------- /scripts/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/scripts/config.ts -------------------------------------------------------------------------------- /scripts/config.wxgame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/scripts/config.wxgame.ts -------------------------------------------------------------------------------- /scripts/myplugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/scripts/myplugin.ts -------------------------------------------------------------------------------- /scripts/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/scripts/node.d.ts -------------------------------------------------------------------------------- /scripts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/scripts/tsconfig.json -------------------------------------------------------------------------------- /scripts/wxgame/wxgame.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/scripts/wxgame/wxgame.ts -------------------------------------------------------------------------------- /src/AssetAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/AssetAdapter.ts -------------------------------------------------------------------------------- /src/LoadingUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/LoadingUI.ts -------------------------------------------------------------------------------- /src/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/Main.ts -------------------------------------------------------------------------------- /src/Platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/Platform.ts -------------------------------------------------------------------------------- /src/ThemeAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/ThemeAdapter.ts -------------------------------------------------------------------------------- /src/game/GameApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/game/GameApp.ts -------------------------------------------------------------------------------- /src/game/GameConst.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/game/GameConst.ts -------------------------------------------------------------------------------- /src/game/GameControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/game/GameControl.ts -------------------------------------------------------------------------------- /src/game/comment/MyButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/game/comment/MyButton.ts -------------------------------------------------------------------------------- /src/game/comment/Role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/game/comment/Role.ts -------------------------------------------------------------------------------- /src/game/comment/Shake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/game/comment/Shake.ts -------------------------------------------------------------------------------- /src/game/comment/SpecialNumber.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/game/comment/SpecialNumber.ts -------------------------------------------------------------------------------- /src/game/layer/GameOverLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/game/layer/GameOverLayer.ts -------------------------------------------------------------------------------- /src/game/layer/GameScenesLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/game/layer/GameScenesLayer.ts -------------------------------------------------------------------------------- /src/game/layer/StartGameLayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/src/game/layer/StartGameLayer.ts -------------------------------------------------------------------------------- /template/runtime/native_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/template/runtime/native_loader.js -------------------------------------------------------------------------------- /template/runtime/native_require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/template/runtime/native_require.js -------------------------------------------------------------------------------- /template/runtime/runtime_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/template/runtime/runtime_loader.js -------------------------------------------------------------------------------- /template/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/template/web/index.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wingProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenysun/RoomRun/HEAD/wingProperties.json --------------------------------------------------------------------------------