├── .wing ├── launch.json ├── packConfig.json ├── settings.json └── tasks.json ├── README.md ├── bin-debug ├── AssetAdapter.js ├── AssetAdapter.js.map ├── LoadingUI.js ├── LoadingUI.js.map ├── Main.js ├── Main.js.map ├── ThemeAdapter.js ├── ThemeAdapter.js.map ├── control │ ├── ChapterConfig.js │ ├── ChapterConfig.js.map │ ├── ColorGlowFilter.js │ ├── ColorGlowFilter.js.map │ ├── ConnectLogic.js │ ├── ConnectLogic.js.map │ ├── GameEventManager.js │ ├── GameEventManager.js.map │ ├── LocalStorageControl.js │ ├── LocalStorageControl.js.map │ ├── PropsManager.js │ ├── PropsManager.js.map │ ├── SceenControl.js │ └── SceenControl.js.map ├── data │ ├── GameData.js │ ├── GameData.js.map │ ├── InitConfigData.js │ ├── InitConfigData.js.map │ ├── PropsPrice.js │ ├── PropsPrice.js.map │ ├── TimerData.js │ └── TimerData.js.map ├── element │ ├── BasePropsElement.js │ ├── BasePropsElement.js.map │ ├── GameElement.js │ └── GameElement.js.map ├── event │ ├── GameEvent.js │ └── GameEvent.js.map ├── sceen │ ├── ChapterSceen.js │ ├── ChapterSceen.js.map │ ├── GameSceen.js │ ├── GameSceen.js.map │ ├── HomeSceen.js │ ├── HomeSceen.js.map │ ├── StoreSceen.js │ └── StoreSceen.js.map └── view │ ├── BuyFailView.js │ ├── BuyFailView.js.map │ ├── ElementView.js │ ├── ElementView.js.map │ ├── GameBackground.js │ ├── GameBackground.js.map │ ├── GameMap.js │ ├── GameMap.js.map │ ├── HomeBtnsView.js │ ├── HomeBtnsView.js.map │ ├── IconView.js │ ├── IconView.js.map │ ├── LockChapter.js │ ├── LockChapter.js.map │ ├── LoseView.js │ ├── LoseView.js.map │ ├── PassView.js │ ├── PassView.js.map │ ├── PropViews.js │ ├── PropViews.js.map │ ├── PropsShopItem.js │ ├── PropsShopItem.js.map │ ├── ResultView.js │ ├── ResultView.js.map │ ├── TimerView.js │ ├── TimerView.js.map │ ├── UnLockChapter.js │ ├── UnLockChapter.js.map │ └── btn │ ├── BackBtn.js │ ├── BackBtn.js.map │ ├── BaseBtn.js │ ├── BaseBtn.js.map │ ├── BuyBtn.js │ ├── BuyBtn.js.map │ ├── EnterChapterBtn.js │ ├── EnterChapterBtn.js.map │ ├── EnterStoreBtn.js │ └── EnterStoreBtn.js.map ├── bin-release └── web │ └── 1.0 │ ├── favicon.ico │ ├── index.html │ ├── libs │ └── modules │ │ ├── egret │ │ ├── egret.min.js │ │ └── egret.web.min.js │ │ ├── eui │ │ └── eui.min.js │ │ ├── game │ │ └── game.min.js │ │ ├── res │ │ └── res.min.js │ │ └── tween │ │ └── tween.min.js │ ├── main.min.js │ ├── manifest.json │ ├── promise │ └── bin │ │ └── promise.min.js │ └── resource │ ├── assets │ └── myPic │ │ ├── back_btn_1b7ac93e.jpg │ │ ├── back_btn_2e9dafee.png │ │ ├── buy_fail_39bd630e.png │ │ ├── buy_fail_52315dbe.jpg │ │ ├── linkgame.psd │ │ ├── store_2a547bc5.jpg │ │ └── store_563a2b41.png │ ├── chapterMap_60cc5b81.json │ ├── config │ └── description_2e5ca871.json │ ├── default.res.json │ ├── default.thm.json │ ├── eui_skins │ ├── ButtonSkin.exml │ ├── CheckBoxSkin.exml │ ├── HScrollBarSkin.exml │ ├── HSliderSkin.exml │ ├── ItemRendererSkin.exml │ ├── PanelSkin.exml │ ├── ProgressBarSkin.exml │ ├── RadioButtonSkin.exml │ ├── ScrollerSkin.exml │ ├── TextInputSkin.exml │ ├── ToggleSwitchSkin.exml │ ├── VScrollBarSkin.exml │ └── VSliderSkin.exml │ └── packs0 │ ├── preload-0sheet_4c46e080.json │ ├── preload-0sheet_6f3a26a9.png │ ├── preload-1sheet_2dff0d28.png │ └── preload-1sheet_59310684.json ├── egretProperties.json ├── favicon.ico ├── index.html ├── libs ├── exml.e.d.ts └── modules │ ├── egret │ ├── egret.d.ts │ ├── egret.js │ ├── egret.min.js │ ├── egret.native.js │ ├── egret.native.min.js │ ├── egret.web.js │ └── egret.web.min.js │ ├── eui │ ├── eui.d.ts │ ├── eui.js │ └── eui.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 ├── linkgame └── proj.android │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── libs │ │ ├── arm64-v8a │ │ │ └── libegret.so │ │ ├── armeabi-v7a │ │ │ └── libegret.so │ │ ├── armeabi │ │ │ └── libegret.so │ │ ├── egret.jar │ │ └── x86 │ │ │ └── libegret.so │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── org │ │ │ └── egret │ │ │ └── java │ │ │ └── linkgame │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── AndroidManifest.xml │ │ ├── bin │ │ │ ├── AndroidManifest.xml │ │ │ ├── classes.dex │ │ │ ├── classes │ │ │ │ └── org │ │ │ │ │ └── egret │ │ │ │ │ └── java │ │ │ │ │ └── linkgame │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$mipmap.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ └── R.class │ │ │ ├── linkgame.apk │ │ │ ├── res │ │ │ │ └── crunch │ │ │ │ │ ├── drawable │ │ │ │ │ └── splash_img.png │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── splash_img.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── splash_img.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── splash_img.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── splash_img.png │ │ │ │ │ └── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── splash_img.png │ │ │ └── resources.ap_ │ │ ├── gen │ │ │ └── org │ │ │ │ └── egret │ │ │ │ └── java │ │ │ │ └── linkgame │ │ │ │ ├── BuildConfig.java │ │ │ │ └── R.java │ │ ├── java │ │ │ └── org │ │ │ │ └── egret │ │ │ │ └── java │ │ │ │ ├── SplashActivity.java │ │ │ │ └── linkgame │ │ │ │ ├── GameLoadingView.java │ │ │ │ ├── HotUpdate.java │ │ │ │ └── linkgame.java │ │ ├── project.properties │ │ └── res │ │ │ ├── drawable │ │ │ ├── splash_img.png │ │ │ └── splash_layer_list.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── loading_view.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── splash_img.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── splash_img.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── splash_img.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── splash_img.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── splash_img.png │ │ │ ├── values-w820dp │ │ │ ├── dimens.xml │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── org │ │ └── egret │ │ └── java │ │ └── linkgame │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── local.properties │ └── settings.gradle ├── manifest.json ├── promise └── bin │ ├── promise.js │ └── promise.min.js ├── resource ├── assets │ ├── Button │ │ ├── button_down.png │ │ └── button_up.png │ ├── CheckBox │ │ ├── checkbox_select_disabled.png │ │ ├── checkbox_select_down.png │ │ ├── checkbox_select_up.png │ │ └── checkbox_unselect.png │ ├── ItemRenderer │ │ └── selected.png │ ├── Panel │ │ ├── border.png │ │ └── header.png │ ├── ProgressBar │ │ ├── thumb_pb.png │ │ └── track_pb.png │ ├── RadioButton │ │ ├── radiobutton_select_disabled.png │ │ ├── radiobutton_select_down.png │ │ ├── radiobutton_select_up.png │ │ └── radiobutton_unselect.png │ ├── ScrollBar │ │ ├── roundthumb.png │ │ └── track_sb.png │ ├── Slider │ │ ├── thumb.png │ │ ├── track.png │ │ └── tracklight.png │ ├── ToggleSwitch │ │ ├── handle.png │ │ ├── off.png │ │ └── on.png │ ├── egret_icon.png │ └── myPic │ │ ├── again.png │ │ ├── back_btn.jpg │ │ ├── back_btn.png │ │ ├── buy.png │ │ ├── buy_fail.jpg │ │ ├── buy_fail.png │ │ ├── cadeado.png │ │ ├── cat.jpg │ │ ├── chapter_sceen.jpg │ │ ├── defaultBg.png │ │ ├── e0.png │ │ ├── e1.png │ │ ├── e2.png │ │ ├── e3.png │ │ ├── e4.png │ │ ├── e5.png │ │ ├── exit.png │ │ ├── gameBg.png │ │ ├── homebg.png │ │ ├── level1.jpg │ │ ├── linkgame.psd │ │ ├── lose.png │ │ ├── n0.png │ │ ├── n1.png │ │ ├── n2.png │ │ ├── n3.png │ │ ├── n4.png │ │ ├── n5.png │ │ ├── n6.png │ │ ├── n7.png │ │ ├── n8.png │ │ ├── n9.png │ │ ├── next.png │ │ ├── okbtn.jpg │ │ ├── pause.png │ │ ├── prompt.png │ │ ├── reset.png │ │ ├── start.jpg │ │ ├── startbtn.png │ │ ├── store.jpg │ │ ├── store.png │ │ ├── storebtn.png │ │ ├── timer.png │ │ ├── unlock.png │ │ ├── win.png │ │ └── yellowbtn.jpg ├── chapterMap.json ├── config │ └── description.json ├── default.res.json ├── default.thm.json └── eui_skins │ ├── ButtonSkin.exml │ ├── CheckBoxSkin.exml │ ├── HScrollBarSkin.exml │ ├── HSliderSkin.exml │ ├── ItemRendererSkin.exml │ ├── PanelSkin.exml │ ├── ProgressBarSkin.exml │ ├── RadioButtonSkin.exml │ ├── ScrollerSkin.exml │ ├── TextInputSkin.exml │ ├── ToggleSwitchSkin.exml │ ├── VScrollBarSkin.exml │ └── VSliderSkin.exml ├── show ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png └── 8.png ├── src ├── AssetAdapter.ts ├── LoadingUI.ts ├── Main.ts ├── ThemeAdapter.ts ├── control │ ├── ChapterConfig.ts │ ├── ColorGlowFilter.ts │ ├── ConnectLogic.ts │ ├── GameEventManager.ts │ ├── LocalStorageControl.ts │ ├── PropsManager.ts │ └── SceenControl.ts ├── data │ ├── GameData.ts │ ├── InitConfigData.ts │ ├── PropsPrice.ts │ └── TimerData.ts ├── element │ ├── BasePropsElement.ts │ └── GameElement.ts ├── event │ └── GameEvent.ts ├── sceen │ ├── ChapterSceen.ts │ ├── GameSceen.ts │ ├── HomeSceen.ts │ └── StoreSceen.ts └── view │ ├── BuyFailView.ts │ ├── ElementView.ts │ ├── GameBackground.ts │ ├── GameMap.ts │ ├── HomeBtnsView.ts │ ├── IconView.ts │ ├── LockChapter.ts │ ├── LoseView.ts │ ├── PassView.ts │ ├── PropViews.ts │ ├── PropsShopItem.ts │ ├── ResultView.ts │ ├── TimerView.ts │ ├── UnLockChapter.ts │ └── btn │ ├── BackBtn.ts │ ├── BaseBtn.ts │ ├── BuyBtn.ts │ ├── EnterChapterBtn.ts │ └── EnterStoreBtn.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/m-Ryan/egret-game/HEAD/.wing/launch.json -------------------------------------------------------------------------------- /.wing/packConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/.wing/packConfig.json -------------------------------------------------------------------------------- /.wing/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/.wing/settings.json -------------------------------------------------------------------------------- /.wing/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/.wing/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/README.md -------------------------------------------------------------------------------- /bin-debug/AssetAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/AssetAdapter.js -------------------------------------------------------------------------------- /bin-debug/AssetAdapter.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/AssetAdapter.js.map -------------------------------------------------------------------------------- /bin-debug/LoadingUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/LoadingUI.js -------------------------------------------------------------------------------- /bin-debug/LoadingUI.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/LoadingUI.js.map -------------------------------------------------------------------------------- /bin-debug/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/Main.js -------------------------------------------------------------------------------- /bin-debug/Main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/Main.js.map -------------------------------------------------------------------------------- /bin-debug/ThemeAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/ThemeAdapter.js -------------------------------------------------------------------------------- /bin-debug/ThemeAdapter.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/ThemeAdapter.js.map -------------------------------------------------------------------------------- /bin-debug/control/ChapterConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/control/ChapterConfig.js -------------------------------------------------------------------------------- /bin-debug/control/ChapterConfig.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/control/ChapterConfig.js.map -------------------------------------------------------------------------------- /bin-debug/control/ColorGlowFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/control/ColorGlowFilter.js -------------------------------------------------------------------------------- /bin-debug/control/ColorGlowFilter.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/control/ColorGlowFilter.js.map -------------------------------------------------------------------------------- /bin-debug/control/ConnectLogic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/control/ConnectLogic.js -------------------------------------------------------------------------------- /bin-debug/control/ConnectLogic.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/control/ConnectLogic.js.map -------------------------------------------------------------------------------- /bin-debug/control/GameEventManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/control/GameEventManager.js -------------------------------------------------------------------------------- /bin-debug/control/GameEventManager.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/control/GameEventManager.js.map -------------------------------------------------------------------------------- /bin-debug/control/LocalStorageControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/control/LocalStorageControl.js -------------------------------------------------------------------------------- /bin-debug/control/LocalStorageControl.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/control/LocalStorageControl.js.map -------------------------------------------------------------------------------- /bin-debug/control/PropsManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/control/PropsManager.js -------------------------------------------------------------------------------- /bin-debug/control/PropsManager.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/control/PropsManager.js.map -------------------------------------------------------------------------------- /bin-debug/control/SceenControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/control/SceenControl.js -------------------------------------------------------------------------------- /bin-debug/control/SceenControl.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/control/SceenControl.js.map -------------------------------------------------------------------------------- /bin-debug/data/GameData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/data/GameData.js -------------------------------------------------------------------------------- /bin-debug/data/GameData.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/data/GameData.js.map -------------------------------------------------------------------------------- /bin-debug/data/InitConfigData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/data/InitConfigData.js -------------------------------------------------------------------------------- /bin-debug/data/InitConfigData.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/data/InitConfigData.js.map -------------------------------------------------------------------------------- /bin-debug/data/PropsPrice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/data/PropsPrice.js -------------------------------------------------------------------------------- /bin-debug/data/PropsPrice.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/data/PropsPrice.js.map -------------------------------------------------------------------------------- /bin-debug/data/TimerData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/data/TimerData.js -------------------------------------------------------------------------------- /bin-debug/data/TimerData.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/data/TimerData.js.map -------------------------------------------------------------------------------- /bin-debug/element/BasePropsElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/element/BasePropsElement.js -------------------------------------------------------------------------------- /bin-debug/element/BasePropsElement.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/element/BasePropsElement.js.map -------------------------------------------------------------------------------- /bin-debug/element/GameElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/element/GameElement.js -------------------------------------------------------------------------------- /bin-debug/element/GameElement.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/element/GameElement.js.map -------------------------------------------------------------------------------- /bin-debug/event/GameEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/event/GameEvent.js -------------------------------------------------------------------------------- /bin-debug/event/GameEvent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/event/GameEvent.js.map -------------------------------------------------------------------------------- /bin-debug/sceen/ChapterSceen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/sceen/ChapterSceen.js -------------------------------------------------------------------------------- /bin-debug/sceen/ChapterSceen.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/sceen/ChapterSceen.js.map -------------------------------------------------------------------------------- /bin-debug/sceen/GameSceen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/sceen/GameSceen.js -------------------------------------------------------------------------------- /bin-debug/sceen/GameSceen.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/sceen/GameSceen.js.map -------------------------------------------------------------------------------- /bin-debug/sceen/HomeSceen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/sceen/HomeSceen.js -------------------------------------------------------------------------------- /bin-debug/sceen/HomeSceen.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/sceen/HomeSceen.js.map -------------------------------------------------------------------------------- /bin-debug/sceen/StoreSceen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/sceen/StoreSceen.js -------------------------------------------------------------------------------- /bin-debug/sceen/StoreSceen.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/sceen/StoreSceen.js.map -------------------------------------------------------------------------------- /bin-debug/view/BuyFailView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/BuyFailView.js -------------------------------------------------------------------------------- /bin-debug/view/BuyFailView.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/BuyFailView.js.map -------------------------------------------------------------------------------- /bin-debug/view/ElementView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/ElementView.js -------------------------------------------------------------------------------- /bin-debug/view/ElementView.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/ElementView.js.map -------------------------------------------------------------------------------- /bin-debug/view/GameBackground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/GameBackground.js -------------------------------------------------------------------------------- /bin-debug/view/GameBackground.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/GameBackground.js.map -------------------------------------------------------------------------------- /bin-debug/view/GameMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/GameMap.js -------------------------------------------------------------------------------- /bin-debug/view/GameMap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/GameMap.js.map -------------------------------------------------------------------------------- /bin-debug/view/HomeBtnsView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/HomeBtnsView.js -------------------------------------------------------------------------------- /bin-debug/view/HomeBtnsView.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/HomeBtnsView.js.map -------------------------------------------------------------------------------- /bin-debug/view/IconView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/IconView.js -------------------------------------------------------------------------------- /bin-debug/view/IconView.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/IconView.js.map -------------------------------------------------------------------------------- /bin-debug/view/LockChapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/LockChapter.js -------------------------------------------------------------------------------- /bin-debug/view/LockChapter.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/LockChapter.js.map -------------------------------------------------------------------------------- /bin-debug/view/LoseView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/LoseView.js -------------------------------------------------------------------------------- /bin-debug/view/LoseView.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/LoseView.js.map -------------------------------------------------------------------------------- /bin-debug/view/PassView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/PassView.js -------------------------------------------------------------------------------- /bin-debug/view/PassView.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/PassView.js.map -------------------------------------------------------------------------------- /bin-debug/view/PropViews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/PropViews.js -------------------------------------------------------------------------------- /bin-debug/view/PropViews.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/PropViews.js.map -------------------------------------------------------------------------------- /bin-debug/view/PropsShopItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/PropsShopItem.js -------------------------------------------------------------------------------- /bin-debug/view/PropsShopItem.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/PropsShopItem.js.map -------------------------------------------------------------------------------- /bin-debug/view/ResultView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/ResultView.js -------------------------------------------------------------------------------- /bin-debug/view/ResultView.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/ResultView.js.map -------------------------------------------------------------------------------- /bin-debug/view/TimerView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/TimerView.js -------------------------------------------------------------------------------- /bin-debug/view/TimerView.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/TimerView.js.map -------------------------------------------------------------------------------- /bin-debug/view/UnLockChapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/UnLockChapter.js -------------------------------------------------------------------------------- /bin-debug/view/UnLockChapter.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/UnLockChapter.js.map -------------------------------------------------------------------------------- /bin-debug/view/btn/BackBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/btn/BackBtn.js -------------------------------------------------------------------------------- /bin-debug/view/btn/BackBtn.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/btn/BackBtn.js.map -------------------------------------------------------------------------------- /bin-debug/view/btn/BaseBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/btn/BaseBtn.js -------------------------------------------------------------------------------- /bin-debug/view/btn/BaseBtn.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/btn/BaseBtn.js.map -------------------------------------------------------------------------------- /bin-debug/view/btn/BuyBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/btn/BuyBtn.js -------------------------------------------------------------------------------- /bin-debug/view/btn/BuyBtn.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/btn/BuyBtn.js.map -------------------------------------------------------------------------------- /bin-debug/view/btn/EnterChapterBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/btn/EnterChapterBtn.js -------------------------------------------------------------------------------- /bin-debug/view/btn/EnterChapterBtn.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/btn/EnterChapterBtn.js.map -------------------------------------------------------------------------------- /bin-debug/view/btn/EnterStoreBtn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/btn/EnterStoreBtn.js -------------------------------------------------------------------------------- /bin-debug/view/btn/EnterStoreBtn.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-debug/view/btn/EnterStoreBtn.js.map -------------------------------------------------------------------------------- /bin-release/web/1.0/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/favicon.ico -------------------------------------------------------------------------------- /bin-release/web/1.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/index.html -------------------------------------------------------------------------------- /bin-release/web/1.0/libs/modules/egret/egret.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/libs/modules/egret/egret.min.js -------------------------------------------------------------------------------- /bin-release/web/1.0/libs/modules/egret/egret.web.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/libs/modules/egret/egret.web.min.js -------------------------------------------------------------------------------- /bin-release/web/1.0/libs/modules/eui/eui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/libs/modules/eui/eui.min.js -------------------------------------------------------------------------------- /bin-release/web/1.0/libs/modules/game/game.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/libs/modules/game/game.min.js -------------------------------------------------------------------------------- /bin-release/web/1.0/libs/modules/res/res.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/libs/modules/res/res.min.js -------------------------------------------------------------------------------- /bin-release/web/1.0/libs/modules/tween/tween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/libs/modules/tween/tween.min.js -------------------------------------------------------------------------------- /bin-release/web/1.0/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/main.min.js -------------------------------------------------------------------------------- /bin-release/web/1.0/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/manifest.json -------------------------------------------------------------------------------- /bin-release/web/1.0/promise/bin/promise.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/promise/bin/promise.min.js -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/assets/myPic/back_btn_1b7ac93e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/assets/myPic/back_btn_1b7ac93e.jpg -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/assets/myPic/back_btn_2e9dafee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/assets/myPic/back_btn_2e9dafee.png -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/assets/myPic/buy_fail_39bd630e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/assets/myPic/buy_fail_39bd630e.png -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/assets/myPic/buy_fail_52315dbe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/assets/myPic/buy_fail_52315dbe.jpg -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/assets/myPic/linkgame.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/assets/myPic/linkgame.psd -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/assets/myPic/store_2a547bc5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/assets/myPic/store_2a547bc5.jpg -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/assets/myPic/store_563a2b41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/assets/myPic/store_563a2b41.png -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/chapterMap_60cc5b81.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/chapterMap_60cc5b81.json -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/config/description_2e5ca871.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/config/description_2e5ca871.json -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/default.res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/default.res.json -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/default.thm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/default.thm.json -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/eui_skins/ButtonSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/eui_skins/ButtonSkin.exml -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/eui_skins/CheckBoxSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/eui_skins/CheckBoxSkin.exml -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/eui_skins/HScrollBarSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/eui_skins/HScrollBarSkin.exml -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/eui_skins/HSliderSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/eui_skins/HSliderSkin.exml -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/eui_skins/ItemRendererSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/eui_skins/ItemRendererSkin.exml -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/eui_skins/PanelSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/eui_skins/PanelSkin.exml -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/eui_skins/ProgressBarSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/eui_skins/ProgressBarSkin.exml -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/eui_skins/RadioButtonSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/eui_skins/RadioButtonSkin.exml -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/eui_skins/ScrollerSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/eui_skins/ScrollerSkin.exml -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/eui_skins/TextInputSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/eui_skins/TextInputSkin.exml -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/eui_skins/ToggleSwitchSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/eui_skins/ToggleSwitchSkin.exml -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/eui_skins/VScrollBarSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/eui_skins/VScrollBarSkin.exml -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/eui_skins/VSliderSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/eui_skins/VSliderSkin.exml -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/packs0/preload-0sheet_4c46e080.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/packs0/preload-0sheet_4c46e080.json -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/packs0/preload-0sheet_6f3a26a9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/packs0/preload-0sheet_6f3a26a9.png -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/packs0/preload-1sheet_2dff0d28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/packs0/preload-1sheet_2dff0d28.png -------------------------------------------------------------------------------- /bin-release/web/1.0/resource/packs0/preload-1sheet_59310684.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/bin-release/web/1.0/resource/packs0/preload-1sheet_59310684.json -------------------------------------------------------------------------------- /egretProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/egretProperties.json -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/index.html -------------------------------------------------------------------------------- /libs/exml.e.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/exml.e.d.ts -------------------------------------------------------------------------------- /libs/modules/egret/egret.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/egret/egret.d.ts -------------------------------------------------------------------------------- /libs/modules/egret/egret.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/egret/egret.js -------------------------------------------------------------------------------- /libs/modules/egret/egret.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/egret/egret.min.js -------------------------------------------------------------------------------- /libs/modules/egret/egret.native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/egret/egret.native.js -------------------------------------------------------------------------------- /libs/modules/egret/egret.native.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/egret/egret.native.min.js -------------------------------------------------------------------------------- /libs/modules/egret/egret.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/egret/egret.web.js -------------------------------------------------------------------------------- /libs/modules/egret/egret.web.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/egret/egret.web.min.js -------------------------------------------------------------------------------- /libs/modules/eui/eui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/eui/eui.d.ts -------------------------------------------------------------------------------- /libs/modules/eui/eui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/eui/eui.js -------------------------------------------------------------------------------- /libs/modules/eui/eui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/eui/eui.min.js -------------------------------------------------------------------------------- /libs/modules/game/game.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/game/game.d.ts -------------------------------------------------------------------------------- /libs/modules/game/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/game/game.js -------------------------------------------------------------------------------- /libs/modules/game/game.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/game/game.min.js -------------------------------------------------------------------------------- /libs/modules/res/res.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/res/res.d.ts -------------------------------------------------------------------------------- /libs/modules/res/res.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/res/res.js -------------------------------------------------------------------------------- /libs/modules/res/res.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/res/res.min.js -------------------------------------------------------------------------------- /libs/modules/tween/tween.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/tween/tween.d.ts -------------------------------------------------------------------------------- /libs/modules/tween/tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/tween/tween.js -------------------------------------------------------------------------------- /libs/modules/tween/tween.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/libs/modules/tween/tween.min.js -------------------------------------------------------------------------------- /linkgame/proj.android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/.gitignore -------------------------------------------------------------------------------- /linkgame/proj.android/.idea/.name: -------------------------------------------------------------------------------- 1 | proj.android -------------------------------------------------------------------------------- /linkgame/proj.android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/.idea/compiler.xml -------------------------------------------------------------------------------- /linkgame/proj.android/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /linkgame/proj.android/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/.idea/encodings.xml -------------------------------------------------------------------------------- /linkgame/proj.android/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/.idea/gradle.xml -------------------------------------------------------------------------------- /linkgame/proj.android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/.idea/misc.xml -------------------------------------------------------------------------------- /linkgame/proj.android/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/.idea/modules.xml -------------------------------------------------------------------------------- /linkgame/proj.android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /linkgame/proj.android/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/.idea/vcs.xml -------------------------------------------------------------------------------- /linkgame/proj.android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /linkgame/proj.android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/build.gradle -------------------------------------------------------------------------------- /linkgame/proj.android/app/libs/arm64-v8a/libegret.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/libs/arm64-v8a/libegret.so -------------------------------------------------------------------------------- /linkgame/proj.android/app/libs/armeabi-v7a/libegret.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/libs/armeabi-v7a/libegret.so -------------------------------------------------------------------------------- /linkgame/proj.android/app/libs/armeabi/libegret.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/libs/armeabi/libegret.so -------------------------------------------------------------------------------- /linkgame/proj.android/app/libs/egret.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/libs/egret.jar -------------------------------------------------------------------------------- /linkgame/proj.android/app/libs/x86/libegret.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/libs/x86/libegret.so -------------------------------------------------------------------------------- /linkgame/proj.android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/proguard-rules.pro -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/androidTest/java/org/egret/java/linkgame/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/androidTest/java/org/egret/java/linkgame/ApplicationTest.java -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/.classpath -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/.project -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/classes.dex -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/BuildConfig.class -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$attr.class -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$color.class -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$dimen.class -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$drawable.class -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$id.class -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$layout.class -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$mipmap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$mipmap.class -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$string.class -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R$style.class -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/classes/org/egret/java/linkgame/R.class -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/linkgame.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/linkgame.apk -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/res/crunch/drawable/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/res/crunch/drawable/splash_img.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-hdpi/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-hdpi/splash_img.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-mdpi/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-mdpi/splash_img.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-xhdpi/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-xhdpi/splash_img.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-xxhdpi/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-xxhdpi/splash_img.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-xxxhdpi/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/res/crunch/mipmap-xxxhdpi/splash_img.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/bin/resources.ap_ -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/gen/org/egret/java/linkgame/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/gen/org/egret/java/linkgame/BuildConfig.java -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/gen/org/egret/java/linkgame/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/gen/org/egret/java/linkgame/R.java -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/java/org/egret/java/SplashActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/java/org/egret/java/SplashActivity.java -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/java/org/egret/java/linkgame/GameLoadingView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/java/org/egret/java/linkgame/GameLoadingView.java -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/java/org/egret/java/linkgame/HotUpdate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/java/org/egret/java/linkgame/HotUpdate.java -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/java/org/egret/java/linkgame/linkgame.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/java/org/egret/java/linkgame/linkgame.java -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/project.properties -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/drawable/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/drawable/splash_img.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/drawable/splash_layer_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/drawable/splash_layer_list.xml -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/layout/loading_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/layout/loading_view.xml -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/mipmap-hdpi/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/mipmap-hdpi/splash_img.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/mipmap-mdpi/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/mipmap-mdpi/splash_img.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/mipmap-xhdpi/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/mipmap-xhdpi/splash_img.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/mipmap-xxhdpi/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/mipmap-xxhdpi/splash_img.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/mipmap-xxxhdpi/splash_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/mipmap-xxxhdpi/splash_img.png -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/values-w820dp/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/values-w820dp/styles.xml -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /linkgame/proj.android/app/src/test/java/org/egret/java/linkgame/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/app/src/test/java/org/egret/java/linkgame/ExampleUnitTest.java -------------------------------------------------------------------------------- /linkgame/proj.android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/build.gradle -------------------------------------------------------------------------------- /linkgame/proj.android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/gradle.properties -------------------------------------------------------------------------------- /linkgame/proj.android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /linkgame/proj.android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /linkgame/proj.android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/gradlew -------------------------------------------------------------------------------- /linkgame/proj.android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/gradlew.bat -------------------------------------------------------------------------------- /linkgame/proj.android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/linkgame/proj.android/local.properties -------------------------------------------------------------------------------- /linkgame/proj.android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/manifest.json -------------------------------------------------------------------------------- /promise/bin/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/promise/bin/promise.js -------------------------------------------------------------------------------- /promise/bin/promise.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/promise/bin/promise.min.js -------------------------------------------------------------------------------- /resource/assets/Button/button_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/Button/button_down.png -------------------------------------------------------------------------------- /resource/assets/Button/button_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/Button/button_up.png -------------------------------------------------------------------------------- /resource/assets/CheckBox/checkbox_select_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/CheckBox/checkbox_select_disabled.png -------------------------------------------------------------------------------- /resource/assets/CheckBox/checkbox_select_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/CheckBox/checkbox_select_down.png -------------------------------------------------------------------------------- /resource/assets/CheckBox/checkbox_select_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/CheckBox/checkbox_select_up.png -------------------------------------------------------------------------------- /resource/assets/CheckBox/checkbox_unselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/CheckBox/checkbox_unselect.png -------------------------------------------------------------------------------- /resource/assets/ItemRenderer/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/ItemRenderer/selected.png -------------------------------------------------------------------------------- /resource/assets/Panel/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/Panel/border.png -------------------------------------------------------------------------------- /resource/assets/Panel/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/Panel/header.png -------------------------------------------------------------------------------- /resource/assets/ProgressBar/thumb_pb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/ProgressBar/thumb_pb.png -------------------------------------------------------------------------------- /resource/assets/ProgressBar/track_pb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/ProgressBar/track_pb.png -------------------------------------------------------------------------------- /resource/assets/RadioButton/radiobutton_select_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/RadioButton/radiobutton_select_disabled.png -------------------------------------------------------------------------------- /resource/assets/RadioButton/radiobutton_select_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/RadioButton/radiobutton_select_down.png -------------------------------------------------------------------------------- /resource/assets/RadioButton/radiobutton_select_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/RadioButton/radiobutton_select_up.png -------------------------------------------------------------------------------- /resource/assets/RadioButton/radiobutton_unselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/RadioButton/radiobutton_unselect.png -------------------------------------------------------------------------------- /resource/assets/ScrollBar/roundthumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/ScrollBar/roundthumb.png -------------------------------------------------------------------------------- /resource/assets/ScrollBar/track_sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/ScrollBar/track_sb.png -------------------------------------------------------------------------------- /resource/assets/Slider/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/Slider/thumb.png -------------------------------------------------------------------------------- /resource/assets/Slider/track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/Slider/track.png -------------------------------------------------------------------------------- /resource/assets/Slider/tracklight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/Slider/tracklight.png -------------------------------------------------------------------------------- /resource/assets/ToggleSwitch/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/ToggleSwitch/handle.png -------------------------------------------------------------------------------- /resource/assets/ToggleSwitch/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/ToggleSwitch/off.png -------------------------------------------------------------------------------- /resource/assets/ToggleSwitch/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/ToggleSwitch/on.png -------------------------------------------------------------------------------- /resource/assets/egret_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/egret_icon.png -------------------------------------------------------------------------------- /resource/assets/myPic/again.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/again.png -------------------------------------------------------------------------------- /resource/assets/myPic/back_btn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/back_btn.jpg -------------------------------------------------------------------------------- /resource/assets/myPic/back_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/back_btn.png -------------------------------------------------------------------------------- /resource/assets/myPic/buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/buy.png -------------------------------------------------------------------------------- /resource/assets/myPic/buy_fail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/buy_fail.jpg -------------------------------------------------------------------------------- /resource/assets/myPic/buy_fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/buy_fail.png -------------------------------------------------------------------------------- /resource/assets/myPic/cadeado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/cadeado.png -------------------------------------------------------------------------------- /resource/assets/myPic/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/cat.jpg -------------------------------------------------------------------------------- /resource/assets/myPic/chapter_sceen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/chapter_sceen.jpg -------------------------------------------------------------------------------- /resource/assets/myPic/defaultBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/defaultBg.png -------------------------------------------------------------------------------- /resource/assets/myPic/e0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/e0.png -------------------------------------------------------------------------------- /resource/assets/myPic/e1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/e1.png -------------------------------------------------------------------------------- /resource/assets/myPic/e2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/e2.png -------------------------------------------------------------------------------- /resource/assets/myPic/e3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/e3.png -------------------------------------------------------------------------------- /resource/assets/myPic/e4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/e4.png -------------------------------------------------------------------------------- /resource/assets/myPic/e5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/e5.png -------------------------------------------------------------------------------- /resource/assets/myPic/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/exit.png -------------------------------------------------------------------------------- /resource/assets/myPic/gameBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/gameBg.png -------------------------------------------------------------------------------- /resource/assets/myPic/homebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/homebg.png -------------------------------------------------------------------------------- /resource/assets/myPic/level1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/level1.jpg -------------------------------------------------------------------------------- /resource/assets/myPic/linkgame.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/linkgame.psd -------------------------------------------------------------------------------- /resource/assets/myPic/lose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/lose.png -------------------------------------------------------------------------------- /resource/assets/myPic/n0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/n0.png -------------------------------------------------------------------------------- /resource/assets/myPic/n1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/n1.png -------------------------------------------------------------------------------- /resource/assets/myPic/n2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/n2.png -------------------------------------------------------------------------------- /resource/assets/myPic/n3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/n3.png -------------------------------------------------------------------------------- /resource/assets/myPic/n4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/n4.png -------------------------------------------------------------------------------- /resource/assets/myPic/n5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/n5.png -------------------------------------------------------------------------------- /resource/assets/myPic/n6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/n6.png -------------------------------------------------------------------------------- /resource/assets/myPic/n7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/n7.png -------------------------------------------------------------------------------- /resource/assets/myPic/n8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/n8.png -------------------------------------------------------------------------------- /resource/assets/myPic/n9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/n9.png -------------------------------------------------------------------------------- /resource/assets/myPic/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/next.png -------------------------------------------------------------------------------- /resource/assets/myPic/okbtn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/okbtn.jpg -------------------------------------------------------------------------------- /resource/assets/myPic/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/pause.png -------------------------------------------------------------------------------- /resource/assets/myPic/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/prompt.png -------------------------------------------------------------------------------- /resource/assets/myPic/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/reset.png -------------------------------------------------------------------------------- /resource/assets/myPic/start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/start.jpg -------------------------------------------------------------------------------- /resource/assets/myPic/startbtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/startbtn.png -------------------------------------------------------------------------------- /resource/assets/myPic/store.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/store.jpg -------------------------------------------------------------------------------- /resource/assets/myPic/store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/store.png -------------------------------------------------------------------------------- /resource/assets/myPic/storebtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/storebtn.png -------------------------------------------------------------------------------- /resource/assets/myPic/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/timer.png -------------------------------------------------------------------------------- /resource/assets/myPic/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/unlock.png -------------------------------------------------------------------------------- /resource/assets/myPic/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/win.png -------------------------------------------------------------------------------- /resource/assets/myPic/yellowbtn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/assets/myPic/yellowbtn.jpg -------------------------------------------------------------------------------- /resource/chapterMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/chapterMap.json -------------------------------------------------------------------------------- /resource/config/description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/config/description.json -------------------------------------------------------------------------------- /resource/default.res.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/default.res.json -------------------------------------------------------------------------------- /resource/default.thm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/default.thm.json -------------------------------------------------------------------------------- /resource/eui_skins/ButtonSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/eui_skins/ButtonSkin.exml -------------------------------------------------------------------------------- /resource/eui_skins/CheckBoxSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/eui_skins/CheckBoxSkin.exml -------------------------------------------------------------------------------- /resource/eui_skins/HScrollBarSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/eui_skins/HScrollBarSkin.exml -------------------------------------------------------------------------------- /resource/eui_skins/HSliderSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/eui_skins/HSliderSkin.exml -------------------------------------------------------------------------------- /resource/eui_skins/ItemRendererSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/eui_skins/ItemRendererSkin.exml -------------------------------------------------------------------------------- /resource/eui_skins/PanelSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/eui_skins/PanelSkin.exml -------------------------------------------------------------------------------- /resource/eui_skins/ProgressBarSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/eui_skins/ProgressBarSkin.exml -------------------------------------------------------------------------------- /resource/eui_skins/RadioButtonSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/eui_skins/RadioButtonSkin.exml -------------------------------------------------------------------------------- /resource/eui_skins/ScrollerSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/eui_skins/ScrollerSkin.exml -------------------------------------------------------------------------------- /resource/eui_skins/TextInputSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/eui_skins/TextInputSkin.exml -------------------------------------------------------------------------------- /resource/eui_skins/ToggleSwitchSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/eui_skins/ToggleSwitchSkin.exml -------------------------------------------------------------------------------- /resource/eui_skins/VScrollBarSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/eui_skins/VScrollBarSkin.exml -------------------------------------------------------------------------------- /resource/eui_skins/VSliderSkin.exml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/resource/eui_skins/VSliderSkin.exml -------------------------------------------------------------------------------- /show/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/show/1.png -------------------------------------------------------------------------------- /show/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/show/2.png -------------------------------------------------------------------------------- /show/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/show/3.png -------------------------------------------------------------------------------- /show/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/show/4.png -------------------------------------------------------------------------------- /show/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/show/5.png -------------------------------------------------------------------------------- /show/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/show/6.png -------------------------------------------------------------------------------- /show/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/show/7.png -------------------------------------------------------------------------------- /show/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/show/8.png -------------------------------------------------------------------------------- /src/AssetAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/AssetAdapter.ts -------------------------------------------------------------------------------- /src/LoadingUI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/LoadingUI.ts -------------------------------------------------------------------------------- /src/Main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/Main.ts -------------------------------------------------------------------------------- /src/ThemeAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/ThemeAdapter.ts -------------------------------------------------------------------------------- /src/control/ChapterConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/control/ChapterConfig.ts -------------------------------------------------------------------------------- /src/control/ColorGlowFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/control/ColorGlowFilter.ts -------------------------------------------------------------------------------- /src/control/ConnectLogic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/control/ConnectLogic.ts -------------------------------------------------------------------------------- /src/control/GameEventManager.ts: -------------------------------------------------------------------------------- 1 | class GameEventManager{ 2 | public static timeout(){ 3 | egret.log('时间到') 4 | } 5 | } -------------------------------------------------------------------------------- /src/control/LocalStorageControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/control/LocalStorageControl.ts -------------------------------------------------------------------------------- /src/control/PropsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/control/PropsManager.ts -------------------------------------------------------------------------------- /src/control/SceenControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/control/SceenControl.ts -------------------------------------------------------------------------------- /src/data/GameData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/data/GameData.ts -------------------------------------------------------------------------------- /src/data/InitConfigData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/data/InitConfigData.ts -------------------------------------------------------------------------------- /src/data/PropsPrice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/data/PropsPrice.ts -------------------------------------------------------------------------------- /src/data/TimerData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/data/TimerData.ts -------------------------------------------------------------------------------- /src/element/BasePropsElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/element/BasePropsElement.ts -------------------------------------------------------------------------------- /src/element/GameElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/element/GameElement.ts -------------------------------------------------------------------------------- /src/event/GameEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/event/GameEvent.ts -------------------------------------------------------------------------------- /src/sceen/ChapterSceen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/sceen/ChapterSceen.ts -------------------------------------------------------------------------------- /src/sceen/GameSceen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/sceen/GameSceen.ts -------------------------------------------------------------------------------- /src/sceen/HomeSceen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/sceen/HomeSceen.ts -------------------------------------------------------------------------------- /src/sceen/StoreSceen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/sceen/StoreSceen.ts -------------------------------------------------------------------------------- /src/view/BuyFailView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/BuyFailView.ts -------------------------------------------------------------------------------- /src/view/ElementView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/ElementView.ts -------------------------------------------------------------------------------- /src/view/GameBackground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/GameBackground.ts -------------------------------------------------------------------------------- /src/view/GameMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/GameMap.ts -------------------------------------------------------------------------------- /src/view/HomeBtnsView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/HomeBtnsView.ts -------------------------------------------------------------------------------- /src/view/IconView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/IconView.ts -------------------------------------------------------------------------------- /src/view/LockChapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/LockChapter.ts -------------------------------------------------------------------------------- /src/view/LoseView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/LoseView.ts -------------------------------------------------------------------------------- /src/view/PassView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/PassView.ts -------------------------------------------------------------------------------- /src/view/PropViews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/PropViews.ts -------------------------------------------------------------------------------- /src/view/PropsShopItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/PropsShopItem.ts -------------------------------------------------------------------------------- /src/view/ResultView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/ResultView.ts -------------------------------------------------------------------------------- /src/view/TimerView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/TimerView.ts -------------------------------------------------------------------------------- /src/view/UnLockChapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/UnLockChapter.ts -------------------------------------------------------------------------------- /src/view/btn/BackBtn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/btn/BackBtn.ts -------------------------------------------------------------------------------- /src/view/btn/BaseBtn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/btn/BaseBtn.ts -------------------------------------------------------------------------------- /src/view/btn/BuyBtn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/btn/BuyBtn.ts -------------------------------------------------------------------------------- /src/view/btn/EnterChapterBtn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/btn/EnterChapterBtn.ts -------------------------------------------------------------------------------- /src/view/btn/EnterStoreBtn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/src/view/btn/EnterStoreBtn.ts -------------------------------------------------------------------------------- /template/runtime/native_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/template/runtime/native_loader.js -------------------------------------------------------------------------------- /template/runtime/native_require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/template/runtime/native_require.js -------------------------------------------------------------------------------- /template/runtime/runtime_loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/template/runtime/runtime_loader.js -------------------------------------------------------------------------------- /template/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/template/web/index.html -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/tsconfig.json -------------------------------------------------------------------------------- /wingProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-Ryan/egret-game/HEAD/wingProperties.json --------------------------------------------------------------------------------