├── .gitignore ├── Api_Docs └── Api.md ├── GamerSky.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── GamerSky.xcscheme ├── GamerSky ├── AppDelegate │ ├── AppDelegate+Root.swift │ ├── AppDelegate+Services.swift │ ├── AppDelegate.swift │ └── ImportFile.swift ├── Bridging-Header │ └── GamerSky-Bridging-Header.h ├── Classes │ ├── Base │ │ ├── Button.swift │ │ ├── CollectionReusableView.swift │ │ ├── CollectionView.swift │ │ ├── CollectionViewCell.swift │ │ ├── CollectionViewController.swift │ │ ├── ImageView.swift │ │ ├── Label.swift │ │ ├── Model.swift │ │ ├── RefreshViewModel.swift │ │ ├── TableView.swift │ │ ├── TableViewCell.swift │ │ ├── TableViewController.swift │ │ ├── View.swift │ │ ├── ViewController.swift │ │ └── ViewModel.swift │ ├── Common │ │ ├── AppConfigs.swift │ │ ├── AppEnum.swift │ │ ├── AppKey.swift │ │ └── AppTheme.swift │ ├── Expand │ │ ├── CustomView │ │ │ └── UserDefaults │ │ │ │ └── QYUserDefaults.swift │ │ ├── Extensions │ │ │ ├── DateExtensions.swift │ │ │ ├── IntExtension.swift │ │ │ ├── NetWork │ │ │ │ ├── Codable │ │ │ │ │ ├── ObservableType+Codable.swift │ │ │ │ │ ├── Response+Codable.swift │ │ │ │ │ └── Single+Codable.swift │ │ │ │ └── MoyaPlugin │ │ │ │ │ └── LightError.swift │ │ │ ├── RxSwift │ │ │ │ ├── BehaviorRelay+RangeReplaceableCollection.swift │ │ │ │ ├── NVActivityIndicatorView+Rx.swift │ │ │ │ ├── Notification+Rx.swift │ │ │ │ ├── Observable+Ext.swift │ │ │ │ ├── UICollectionView+Rx.swift │ │ │ │ ├── UIResponder+Rx.swift │ │ │ │ ├── UIScrollView+Rx.swift │ │ │ │ ├── UIState+Rx.swift │ │ │ │ ├── UITableView+Rx.swift │ │ │ │ ├── UIView+Rx.swift │ │ │ │ ├── UIViewController+Rx.swift │ │ │ │ ├── mapAt.swift │ │ │ │ └── mapTo.swift │ │ │ ├── StringExtensions.swift │ │ │ ├── UIColor │ │ │ │ └── UIColorExtension.swift │ │ │ ├── UIFont │ │ │ │ └── UIFontExtension.swift │ │ │ ├── UIViewControllerExt.swift │ │ │ ├── UIViewControllerExtension.swift │ │ │ └── UIViewExtension.swift │ │ ├── Protocol │ │ │ ├── Convert │ │ │ │ └── ConvertToStringable.swift │ │ │ ├── Refreshable │ │ │ │ └── Refreshable.swift │ │ │ ├── Reusable │ │ │ │ ├── NibLoadable.swift │ │ │ │ ├── Reusable.swift │ │ │ │ ├── UICollectionView+Reusable.swift │ │ │ │ └── UITableView+Reusable.swift │ │ │ └── ViewModel │ │ │ │ └── ViewModelable.swift │ │ └── ThirdParty │ │ │ ├── Cosmos │ │ │ ├── CosmosAccessibility.swift │ │ │ ├── CosmosDefaultSettings.swift │ │ │ ├── CosmosLayerHelper.swift │ │ │ ├── CosmosLayers.swift │ │ │ ├── CosmosLocalizedRating.swift │ │ │ ├── CosmosRating.swift │ │ │ ├── CosmosSettings.swift │ │ │ ├── CosmosSize.swift │ │ │ ├── CosmosText.swift │ │ │ ├── CosmosTouch.swift │ │ │ ├── CosmosView.swift │ │ │ ├── Helpers │ │ │ │ ├── CosmosTouchTarget.swift │ │ │ │ └── RightToLeft.swift │ │ │ ├── StarFillMode.swift │ │ │ └── StarLayer.swift │ │ │ └── RxErrorTracker │ │ │ └── ErrorTracker.swift │ ├── Module │ │ ├── Circle │ │ │ └── Controller │ │ │ │ └── CircleViewController.swift │ │ ├── Game │ │ │ ├── ColumnDetail │ │ │ │ ├── Controller │ │ │ │ │ └── ColumnDetailViewController.swift │ │ │ │ └── View │ │ │ │ │ ├── Cell │ │ │ │ │ ├── GameColumnDetailCell.swift │ │ │ │ │ └── GameColumnDetailCell.xib │ │ │ │ │ └── SectionHeader │ │ │ │ │ ├── GameColumnDetailSectionHeader.swift │ │ │ │ │ └── GameColumnDetailSectionHeader.xib │ │ │ ├── ColumnList │ │ │ │ ├── Controller │ │ │ │ │ └── GameColumnViewController.swift │ │ │ │ ├── FlowLayout │ │ │ │ │ └── GameColumnFlowLayout.swift │ │ │ │ └── ViewModel │ │ │ │ │ └── GameColumnViewModel.swift │ │ │ ├── Comment │ │ │ │ ├── List │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── GameCommentListViewController.swift │ │ │ │ │ ├── Model │ │ │ │ │ │ └── GameComment.swift │ │ │ │ │ ├── View │ │ │ │ │ │ ├── GameCommentCell.swift │ │ │ │ │ │ └── GameCommentCell.xib │ │ │ │ │ └── ViewModel │ │ │ │ │ │ └── GameCommentListViewModel.swift │ │ │ │ └── Page │ │ │ │ │ └── GameCommentPageViewController.swift │ │ │ ├── GameDetail │ │ │ │ ├── Model │ │ │ │ │ └── GameDetail.swift │ │ │ │ ├── View │ │ │ │ │ ├── GameDetailHeaderView.swift │ │ │ │ │ └── GameDetailHeaderView.xib │ │ │ │ └── ViewController │ │ │ │ │ └── GameDetailViewController.swift │ │ │ ├── GameList │ │ │ │ ├── Controller │ │ │ │ │ └── GameListViewController.swift │ │ │ │ ├── FlowLayout │ │ │ │ │ └── GameListFlowLayout.swift │ │ │ │ ├── Model │ │ │ │ │ ├── Filter.swift │ │ │ │ │ └── GameList.swift │ │ │ │ ├── View │ │ │ │ │ ├── Cell │ │ │ │ │ │ ├── GameListCell.swift │ │ │ │ │ │ └── GameListCell.xib │ │ │ │ │ ├── FilterView │ │ │ │ │ │ ├── FilterBtn.swift │ │ │ │ │ │ ├── FilterCell.swift │ │ │ │ │ │ ├── FilterCell.xib │ │ │ │ │ │ ├── FilterKindCell.swift │ │ │ │ │ │ ├── FilterKindCell.xib │ │ │ │ │ │ └── FilterView.swift │ │ │ │ │ └── Header │ │ │ │ │ │ ├── GameListHeaderView.swift │ │ │ │ │ │ └── GameListHeaderView.xib │ │ │ │ └── ViewModel │ │ │ │ │ └── GameListViewModel.swift │ │ │ ├── Home │ │ │ │ ├── Controller │ │ │ │ │ └── GameHomeViewController.swift │ │ │ │ ├── Model │ │ │ │ │ ├── Game.swift │ │ │ │ │ └── GameHome.swift │ │ │ │ ├── View │ │ │ │ │ ├── Cell │ │ │ │ │ │ ├── Column │ │ │ │ │ │ │ ├── GameHomeColumnCell.swift │ │ │ │ │ │ │ ├── GameHomeColumnCell.xib │ │ │ │ │ │ │ ├── GameHomeColumnContentCell.swift │ │ │ │ │ │ │ ├── GameHomeColumnContentCell.xib │ │ │ │ │ │ │ └── GameHomeColumnContentFlowLayout.swift │ │ │ │ │ │ ├── Footer │ │ │ │ │ │ │ ├── GameHomePageFooterView.swift │ │ │ │ │ │ │ ├── GameHomePageFooterView.xib │ │ │ │ │ │ │ ├── GameRecommendFooterView.swift │ │ │ │ │ │ │ └── GameRecommendFooterView.xib │ │ │ │ │ │ ├── Ranking │ │ │ │ │ │ │ ├── GameHomeRankingCell.swift │ │ │ │ │ │ │ ├── GameHomeRankingCell.xib │ │ │ │ │ │ │ ├── GameHomeRankingContentCell.swift │ │ │ │ │ │ │ └── GameHomeRankingContentCell.xib │ │ │ │ │ │ ├── Recommend │ │ │ │ │ │ │ ├── GameHomeRecommendCell.swift │ │ │ │ │ │ │ ├── GameHomeRecommendCell.xib │ │ │ │ │ │ │ ├── GameHomeRecommendContentCell.swift │ │ │ │ │ │ │ └── GameHomeRecommendContentCell.xib │ │ │ │ │ │ ├── Tag │ │ │ │ │ │ │ ├── GameHomeTagCell.swift │ │ │ │ │ │ │ ├── GameHomeTagCell.xib │ │ │ │ │ │ │ ├── GameTagContentCell.swift │ │ │ │ │ │ │ └── GameTagContentCell.xib │ │ │ │ │ │ └── WaitSell │ │ │ │ │ │ │ ├── GameHomePageCell.swift │ │ │ │ │ │ │ ├── GameHomePageCell.xib │ │ │ │ │ │ │ ├── GameHomeWaitSellContentCell.swift │ │ │ │ │ │ │ └── GameHomeWaitSellContentCell.xib │ │ │ │ │ ├── Header │ │ │ │ │ │ ├── GameHomeHeaderCell.swift │ │ │ │ │ │ ├── GameHomeHeaderCell.xib │ │ │ │ │ │ ├── GameHomeHeaderFlowLayout.swift │ │ │ │ │ │ └── GameHomeHeaderView.swift │ │ │ │ │ └── Section │ │ │ │ │ │ ├── GameHomeSectionHeader.swift │ │ │ │ │ │ └── GameHomeSectionHeader.xib │ │ │ │ └── ViewModel │ │ │ │ │ └── GameHomeViewModel.swift │ │ │ ├── Ranking │ │ │ │ ├── List │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── GameRankingListViewController.swift │ │ │ │ │ └── ViewModel │ │ │ │ │ │ └── GameRankingListViewModel.swift │ │ │ │ └── Page │ │ │ │ │ └── Controller │ │ │ │ │ └── GameRankingPageViewController.swift │ │ │ └── SellList │ │ │ │ ├── List │ │ │ │ ├── Cell │ │ │ │ │ ├── GameSellListCell.swift │ │ │ │ │ └── GameSellListCell.xib │ │ │ │ ├── Controller │ │ │ │ │ └── GameSellListViewController.swift │ │ │ │ ├── Model │ │ │ │ │ └── GameSellList.swift │ │ │ │ └── ViewModel │ │ │ │ │ └── GameSellListViewModel.swift │ │ │ │ └── Page │ │ │ │ └── Controller │ │ │ │ └── GameSellListPageViewController.swift │ │ ├── Main │ │ │ ├── NavigationController.swift │ │ │ ├── TabBar.swift │ │ │ └── TabBarController.swift │ │ ├── Mine │ │ │ └── Controller │ │ │ │ ├── MineViewController.swift │ │ │ │ └── MineViewController.xib │ │ ├── News │ │ │ ├── Detail │ │ │ │ ├── Controller │ │ │ │ │ └── ContentDetailViewController.swift │ │ │ │ └── Model │ │ │ │ │ └── WebViewImage.swift │ │ │ ├── List │ │ │ │ ├── Controller │ │ │ │ │ └── NewsViewController.swift │ │ │ │ ├── Model │ │ │ │ │ └── Channel.swift │ │ │ │ ├── View │ │ │ │ │ ├── Cell │ │ │ │ │ │ ├── ChannelListCell.swift │ │ │ │ │ │ └── ChannelListCell.xib │ │ │ │ │ ├── SectionHeader │ │ │ │ │ │ ├── NewsSectionHeaderView.swift │ │ │ │ │ │ └── NewsSectionHeaderView.xib │ │ │ │ │ └── TableHeader │ │ │ │ │ │ ├── NewsTableHeaderView.swift │ │ │ │ │ │ └── NewsTableHeaderView.xib │ │ │ │ └── ViewModel │ │ │ │ │ └── NewsListViewModel.swift │ │ │ └── Page │ │ │ │ ├── Controller │ │ │ │ └── NewsPageViewController.swift │ │ │ │ └── ViewModel │ │ │ │ └── NewsPageViewModel.swift │ │ ├── Original │ │ │ └── Home │ │ │ │ ├── Controller │ │ │ │ └── OriginalViewController.swift │ │ │ │ ├── Model │ │ │ │ └── Column.swift │ │ │ │ └── View │ │ │ │ ├── Cell │ │ │ │ ├── ColumnElementCell.swift │ │ │ │ └── ColumnElementCell.xib │ │ │ │ ├── Header │ │ │ │ ├── Cell │ │ │ │ │ ├── ColumnListCell.swift │ │ │ │ │ └── ColumnListCell.xib │ │ │ │ ├── FlowLayout │ │ │ │ │ └── ColumnHeaderFlowLayout.swift │ │ │ │ └── View │ │ │ │ │ ├── ColumnDescHeaderView.swift │ │ │ │ │ ├── ColumnDescHeaderView.xib │ │ │ │ │ ├── ColumnHeaderView.swift │ │ │ │ │ └── ColumnHeaderView.xib │ │ │ │ ├── SectionHeader │ │ │ │ ├── ColumnSectionHeader.swift │ │ │ │ └── ColumnSectionHeader.xib │ │ │ │ └── TitleView │ │ │ │ ├── ColumnNavTitleView.swift │ │ │ │ └── ColumnNavTitleView.xib │ │ └── User │ │ │ └── Model │ │ │ └── Preference.swift │ ├── Networking │ │ ├── ColumnApi.swift │ │ ├── GameApi.swift │ │ ├── NewsApi.swift │ │ ├── SearchApi.swift │ │ └── UserApi.swift │ └── Router │ │ └── NavigationMap.swift ├── Info.plist ├── LaunchScreen │ └── Base.lproj │ │ └── LaunchScreen.storyboard └── Resources │ ├── Assets │ └── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ ├── AppIcon20x20@2x.png │ │ ├── AppIcon20x20@2x~ipad.png │ │ ├── AppIcon20x20@3x.png │ │ ├── AppIcon20x20~ipad.png │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon29x29@2x~ipad.png │ │ ├── AppIcon29x29@3x.png │ │ ├── AppIcon29x29~ipad.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon40x40@2x~ipad.png │ │ ├── AppIcon40x40@3x.png │ │ ├── AppIcon40x40~ipad.png │ │ ├── AppIcon60x60@2x.png │ │ ├── AppIcon60x60@3x.png │ │ ├── AppIcon76x76@2x~ipad.png │ │ ├── AppIcon76x76~ipad.png │ │ ├── AppIcon83.5x83.5@2x~ipad.png │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── GamerSkyImage │ │ ├── ClubLongImageContentIcon_28x14_UIMode_Day.imageset │ │ │ ├── ClubLongImageContentIcon_28x14_UIMode_Day@2x.png │ │ │ └── Contents.json │ │ ├── ClubLongImageContentIcon_28x14_UIMode_Night.imageset │ │ │ ├── ClubLongImageContentIcon_28x14_UIMode_Night@2x.png │ │ │ └── Contents.json │ │ ├── CommentReturn_blackColor20x20.imageset │ │ │ ├── CommentReturn_blackColor20x20@2x.png │ │ │ └── Contents.json │ │ ├── CommentReturn_blackColor20x20_Night.imageset │ │ │ ├── CommentReturn_blackColor20x20_Night@2x.png │ │ │ └── Contents.json │ │ ├── CommentReturn_whiteColor20x20.imageset │ │ │ ├── CommentReturn_whiteColor20x20@2x.png │ │ │ └── Contents.json │ │ ├── ContentPageCollection22x22.imageset │ │ │ ├── ContentPageCollection22x22@2x.png │ │ │ └── Contents.json │ │ ├── ContentPageCollection22x22_Night.imageset │ │ │ ├── ContentPageCollection22x22_Night@2x.png │ │ │ └── Contents.json │ │ ├── ContentPageCollection_select22x22.imageset │ │ │ ├── ContentPageCollection_select22x22@2x.png │ │ │ └── Contents.json │ │ ├── ContentPageCollection_select22x22_Night.imageset │ │ │ ├── ContentPageCollection_select22x22_Night@2x.png │ │ │ └── Contents.json │ │ ├── ContentPageComment22x22.imageset │ │ │ ├── ContentPageComment22x22@2x.png │ │ │ └── Contents.json │ │ ├── ContentPageComment22x22_Night.imageset │ │ │ ├── ContentPageComment22x22_Night@2x.png │ │ │ └── Contents.json │ │ ├── ContentPageForwarding22x22.imageset │ │ │ ├── ContentPageForwarding22x22@2x.png │ │ │ └── Contents.json │ │ ├── ContentPageForwarding22x22_Night.imageset │ │ │ ├── ContentPageForwarding22x22_Night@2x.png │ │ │ └── Contents.json │ │ ├── ContentPageFunction_20x20_UIMode_Day.imageset │ │ │ ├── ContentPageFunction_20x20_UIMode_Day@2x.png │ │ │ └── Contents.json │ │ ├── ContentPageFunction_20x20_UIMode_Night.imageset │ │ │ ├── ContentPageFunction_20x20_UIMode_Night@2x.png │ │ │ └── Contents.json │ │ ├── ContentPageFunction_20x20_White_UIMode_Day.imageset │ │ │ ├── ContentPageFunction_20x20_White_UIMode_Day@2x.png │ │ │ └── Contents.json │ │ ├── ContentPageFunction_20x20_White_UIMode_Night.imageset │ │ │ ├── ContentPageFunction_20x20_White_UIMode_Night@2x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── GameHomePage_Time_16x16.imageset │ │ │ ├── Contents.json │ │ │ └── GameHomePage_Time_16x16@2x.png │ │ ├── GameHomePage_Time_Night_16x16.imageset │ │ │ ├── Contents.json │ │ │ └── GameHomePage_Time_Night_16x16@2x.png │ │ ├── NewsAlertsShareIcon_15x15_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── NewsAlertsShareIcon_15x15_UIMode_Day@2x.png │ │ ├── NewsAlertsShareIcon_15x15_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── NewsAlertsShareIcon_15x15_UIMode_Night@2x.png │ │ ├── PhotoEditorsDownLoad_10x10.imageset │ │ │ ├── Contents.json │ │ │ └── PhotoEditorsDownLoad_10x10@2x.png │ │ ├── PhotoEditorsHide_10x10.imageset │ │ │ ├── Contents.json │ │ │ └── PhotoEditorsHide_10x10@2x.png │ │ ├── PhotoEditorsReturn_10x10.imageset │ │ │ ├── Contents.json │ │ │ └── PhotoEditorsReturn_10x10@2x.png │ │ ├── PhotoEditorsShow_10x10.imageset │ │ │ ├── Contents.json │ │ │ └── PhotoEditorsShow_10x10@2x.png │ │ ├── ShareTheBrowser_24x24_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── ShareTheBrowser_24x24_UIMode_Day@2x.png │ │ ├── ShareTheBrowser_24x24_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── ShareTheBrowser_24x24_UIMode_Night@2x.png │ │ ├── UserBrowsingHistory.imageset │ │ │ ├── Contents.json │ │ │ └── UserBrowsingHistory@2x.png │ │ ├── UserReadedHistory_Bin_20x20_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── UserReadedHistory_Bin_20x20_UIMode_Day@2x.png │ │ ├── UserReadedHistory_Bin_20x20_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── UserReadedHistory_Bin_20x20_UIMode_Night@2x.png │ │ ├── anonymousLogin_22x22.imageset │ │ │ ├── Contents.json │ │ │ └── anonymousLogin_22x22@2x.png │ │ ├── anonymousLogin_22x22_Night.imageset │ │ │ ├── Contents.json │ │ │ └── anonymousLogin_22x22_Night@2x.png │ │ ├── anonymousOpen_22x22.imageset │ │ │ ├── Contents.json │ │ │ └── anonymousOpen_22x22@2x.png │ │ ├── anonymousOpen_22x22_Night.imageset │ │ │ ├── Contents.json │ │ │ └── anonymousOpen_22x22_Night@2x.png │ │ ├── anonymousShutDown22x22.imageset │ │ │ ├── Contents.json │ │ │ └── anonymousShutDown22x22@2x.png │ │ ├── anonymousShutDown22x22_Night.imageset │ │ │ ├── Contents.json │ │ │ └── anonymousShutDown22x22_Night@2x.png │ │ ├── clubSubjectVideoContent_VideoIcon_12x13_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── clubSubjectVideoContent_VideoIcon_12x13_UIMode_Day@2x.png │ │ ├── clubSubjectVideoContent_VideoIcon_12x13_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── clubSubjectVideoContent_VideoIcon_12x13_UIMode_Night@2x.png │ │ ├── clubSubject_defaultHeadeIcon_48x48.imageset │ │ │ ├── Contents.json │ │ │ └── clubSubject_defaultHeadeIcon_48x48@2x.png │ │ ├── clubSubject_videoPlayIcon_50x50_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── clubSubject_videoPlayIcon_50x50_UIMode_Day@2x.png │ │ ├── clubSubject_videoPlayIcon_50x50_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── clubSubject_videoPlayIcon_50x50_UIMode_Night@2x.png │ │ ├── club_AddImageButton.imageset │ │ │ ├── Contents.json │ │ │ └── club_AddImageButton@2x.png │ │ ├── club_CreateTopicFloatButton.imageset │ │ │ ├── Contents.json │ │ │ └── club_CreateTopicFloatButton@2x.png │ │ ├── club_CreateTopicFloatButton_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── club_CreateTopicFloatButton_UIMode_Night@2x.png │ │ ├── club_HideKeyboardButton.imageset │ │ │ ├── Contents.json │ │ │ └── club_HideKeyboardButton@2x.png │ │ ├── club_Icon_GIF_28x14.imageset │ │ │ ├── Contents.json │ │ │ └── club_Icon_GIF_28x14@2x.png │ │ ├── club_Icon_GIF_28x14_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── club_Icon_GIF_28x14_UIMode_Night@2x.png │ │ ├── club_SelectImageButton.imageset │ │ │ ├── Contents.json │ │ │ └── club_SelectImageButton@2x.png │ │ ├── club_SelectSubjectButton.imageset │ │ │ ├── Contents.json │ │ │ └── club_SelectSubjectButton@2x.png │ │ ├── columnBoxLift_14x11_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── columnBoxLift_14x11_UIMode_Day@2x.png │ │ ├── columnBoxLift_14x11_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── columnBoxLift_14x11_UIMode_Night@2x.png │ │ ├── columnBoxRight_14x11_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── columnBoxRight_14x11_UIMode_Day@2x.png │ │ ├── columnBoxRight_14x11_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── columnBoxRight_14x11_UIMode_Night@2x.png │ │ ├── comments_PraiseButtonSelected_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── comments_PraiseButtonSelected_UIMode_Day@2x.png │ │ ├── comments_PraiseButtonSelected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── comments_PraiseButtonSelected_UIMode_Night@2x.png │ │ ├── comments_PraiseButton_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── comments_PraiseButton_UIMode_Day@2x.png │ │ ├── comments_PraiseButton_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── comments_PraiseButton_UIMode_Night@2x.png │ │ ├── comments_ReplyButton.imageset │ │ │ ├── Contents.json │ │ │ └── comments_ReplyButton@2x.png │ │ ├── common_Button_Club.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_Club@2x.png │ │ ├── common_Button_Club_Selected.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_Club_Selected@2x.png │ │ ├── common_Button_Club_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_Club_Selected_UIMode_Night@2x.png │ │ ├── common_Button_Club_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_Club_UIMode_Night@2x.png │ │ ├── common_Button_DingYue_Selected_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_DingYue_Selected_UIMode_Day@2x.png │ │ ├── common_Button_DingYue_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_DingYue_Selected_UIMode_Night@2x.png │ │ ├── common_Button_DingYue_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_DingYue_UIMode_Day@2x.png │ │ ├── common_Button_DingYue_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_DingYue_UIMode_Night@2x.png │ │ ├── common_Button_GongLue_Selected_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_GongLue_Selected_UIMode_Day@2x.png │ │ ├── common_Button_GongLue_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_GongLue_Selected_UIMode_Night@2x.png │ │ ├── common_Button_GongLue_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_GongLue_UIMode_Day@2x.png │ │ ├── common_Button_GongLue_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_GongLue_UIMode_Night@2x.png │ │ ├── common_Button_PrimaryActivity_Selected_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_PrimaryActivity_Selected_UIMode_Day@2x.png │ │ ├── common_Button_PrimaryActivity_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_PrimaryActivity_Selected_UIMode_Night@2x.png │ │ ├── common_Button_PrimaryActivity_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_PrimaryActivity_UIMode_Day@2x.png │ │ ├── common_Button_PrimaryActivity_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_PrimaryActivity_UIMode_Night@2x.png │ │ ├── common_Button_ShouYou_Selected_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_ShouYou_Selected_UIMode_Day@2x.png │ │ ├── common_Button_ShouYou_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_ShouYou_Selected_UIMode_Night@2x.png │ │ ├── common_Button_ShouYou_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_ShouYou_UIMode_Day@2x.png │ │ ├── common_Button_ShouYou_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_ShouYou_UIMode_Night@2x.png │ │ ├── common_Button_WoDe_Selected_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_WoDe_Selected_UIMode_Day@2x.png │ │ ├── common_Button_WoDe_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_WoDe_Selected_UIMode_Night@2x.png │ │ ├── common_Button_WoDe_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_WoDe_UIMode_Day@2x.png │ │ ├── common_Button_WoDe_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_WoDe_UIMode_Night@2x.png │ │ ├── common_Button_XinWen_Selected_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_XinWen_Selected_UIMode_Day@2x.png │ │ ├── common_Button_XinWen_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_XinWen_Selected_UIMode_Night@2x.png │ │ ├── common_Button_XinWen_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_XinWen_UIMode_Day@2x.png │ │ ├── common_Button_XinWen_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_XinWen_UIMode_Night@2x.png │ │ ├── common_Button_YouMinYuanChuang_Selected_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_YouMinYuanChuang_Selected_UIMode_Day@2x.png │ │ ├── common_Button_YouMinYuanChuang_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_YouMinYuanChuang_Selected_UIMode_Night@2x.png │ │ ├── common_Button_YouMinYuanChuang_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_YouMinYuanChuang_UIMode_Day@2x.png │ │ ├── common_Button_YouMinYuanChuang_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_YouMinYuanChuang_UIMode_Night@2x.png │ │ ├── common_Button_YouXiKu_Selected_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_YouXiKu_Selected_UIMode_Day@2x.png │ │ ├── common_Button_YouXiKu_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_YouXiKu_Selected_UIMode_Night@2x.png │ │ ├── common_Button_YouXiKu_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_YouXiKu_UIMode_Day@2x.png │ │ ├── common_Button_YouXiKu_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Button_YouXiKu_UIMode_Night@2x.png │ │ ├── common_CaptionImage_LoginToLook_134x35_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_LoginToLook_134x35_UIMode_Day@2x.png │ │ ├── common_CaptionImage_LoginToLook_134x35_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_LoginToLook_134x35_UIMode_Night@2x.png │ │ ├── common_CaptionImage_NewComment_165x35_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_NewComment_165x35_UIMode_Day@2x.png │ │ ├── common_CaptionImage_NewComment_165x35_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_NewComment_165x35_UIMode_Night@2x.png │ │ ├── common_CaptionImage_NewFeedBack_141x35_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_NewFeedBack_141x35_UIMode_Day@2x.png │ │ ├── common_CaptionImage_NewFeedBack_141x35_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_NewFeedBack_141x35_UIMode_Night@2x.png │ │ ├── common_CaptionImage_NewSubscribe_142x35_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_NewSubscribe_142x35_UIMode_Day@2x.png │ │ ├── common_CaptionImage_NewSubscribe_142x35_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_NewSubscribe_142x35_UIMode_Night@2x.png │ │ ├── common_CaptionImage_NullCommentReplies_141x35_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_NullCommentReplies_141x35_UIMode_Day@2x.png │ │ ├── common_CaptionImage_NullCommentReplies_141x35_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_NullCommentReplies_141x35_UIMode_Night@2x.png │ │ ├── common_CaptionImage_NullContent_141x35_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_NullContent_141x35_UIMode_Day@2x.png │ │ ├── common_CaptionImage_NullContent_141x35_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_NullContent_141x35_UIMode_Night@2x.png │ │ ├── common_CaptionImage_Refresh_133x35_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_Refresh_133x35_UIMode_Day@2x.png │ │ ├── common_CaptionImage_Refresh_133x35_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_Refresh_133x35_UIMode_Night@2x.png │ │ ├── common_CaptionImage_YouMinXingKong_134x35_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_YouMinXingKong_134x35_UIMode_Day@2x.png │ │ ├── common_CaptionImage_YouMinXingKong_134x35_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_CaptionImage_YouMinXingKong_134x35_UIMode_Night@2x.png │ │ ├── common_Icon_ Browser_50x50.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ Browser_50x50@2x.png │ │ ├── common_Icon_2G3GNullImageMode_38x38_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_2G3GNullImageMode_38x38_UIMode_Day@2x.png │ │ ├── common_Icon_2G3GNullImageMode_38x38_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_2G3GNullImageMode_38x38_UIMode_Night@2x.png │ │ ├── common_Icon_Account_16x16_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ ├── common_Icon_Account_16x16_UIMode_Day.png │ │ │ └── common_Icon_Account_16x16_UIMode_Day@2x.png │ │ ├── common_Icon_Account_16x16_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Account_16x16_UIMode_Night@2x.png │ │ ├── common_Icon_Add_10x10.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Add_10x10@2x.png │ │ ├── common_Icon_Add_10x10_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Add_10x10_UIMode_Night@2x.png │ │ ├── common_Icon_Add_20x20.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Add_20x20@2x.png │ │ ├── common_Icon_Add_20x20_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Add_20x20_UIMode_Night@2x.png │ │ ├── common_Icon_Anonymous_22x22_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Anonymous_22x22_UIMode_Day@2x.png │ │ ├── common_Icon_Anonymous_22x22_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Anonymous_22x22_UIMode_Night@2x.png │ │ ├── common_Icon_Anonymous_Selected_22x22.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Anonymous_Selected_22x22@2x.png │ │ ├── common_Icon_Anonymous_Selected_22x22_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Anonymous_Selected_22x22_UIMode_Day@2x.png │ │ ├── common_Icon_Anonymous_Selected_22x22_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Anonymous_Selected_22x22_UIMode_Night@2x.png │ │ ├── common_Icon_Back_20x20_Black.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Back_20x20_Black@2x.png │ │ ├── common_Icon_Back_20x20_Black_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Back_20x20_Black_UIMode_Night@2x.png │ │ ├── common_Icon_Back_20x20_White.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Back_20x20_White@2x.png │ │ ├── common_Icon_Back_20x20_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Back_20x20_White_UIMode_Night@2x.png │ │ ├── common_Icon_Back_26x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Back_26x26_UIMode_Day@2x.png │ │ ├── common_Icon_Back_26x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Back_26x26_UIMode_Night@2x.png │ │ ├── common_Icon_Back_9x16.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Back_9x16@2x.png │ │ ├── common_Icon_Blank24x24.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Blank24x24@2x.png │ │ ├── common_Icon_Calendar_20x20_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Calendar_20x20_UIMode_Day@2x.png │ │ ├── common_Icon_Calendar_20x20_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Calendar_20x20_UIMode_Night@2x.png │ │ ├── common_Icon_Catalogs_16x16_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Catalogs_16x16_UIMode_Day@2x.png │ │ ├── common_Icon_Catalogs_16x16_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Catalogs_16x16_UIMode_Night@2x.png │ │ ├── common_Icon_Catalogs_22x22.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Catalogs_22x22@2x.png │ │ ├── common_Icon_CenterSignalPoint_15x15_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_CenterSignalPoint_15x15_UIMode_Day@2x.png │ │ ├── common_Icon_CenterSignalPoint_15x15_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_CenterSignalPoint_15x15_UIMode_Night@2x.png │ │ ├── common_Icon_CheckBox_15x15.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_CheckBox_15x15@2x.png │ │ ├── common_Icon_CheckBox_15x15_Selected.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_CheckBox_15x15_Selected@2x.png │ │ ├── common_Icon_ClearCache_38x38_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ClearCache_38x38_UIMode_Day@2x.png │ │ ├── common_Icon_ClearCache_38x38_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ClearCache_38x38_UIMode_Night@2x.png │ │ ├── common_Icon_Clear_15x15_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Clear_15x15_UIMode_Day@2x.png │ │ ├── common_Icon_Clear_15x15_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Clear_15x15_UIMode_Night@2x.png │ │ ├── common_Icon_Clear_20x20_White_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Clear_20x20_White_UIMode_Day@2x.png │ │ ├── common_Icon_Clear_20x20_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Clear_20x20_White_UIMode_Night@2x.png │ │ ├── common_Icon_Clock_14x14.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Clock_14x14@2x.png │ │ ├── common_Icon_Clock_14x14_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Clock_14x14_UIMode_Night@2x.png │ │ ├── common_Icon_Close_20x20_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Close_20x20_UIMode_Day@2x.png │ │ ├── common_Icon_Close_20x20_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Close_20x20_UIMode_Night@2x.png │ │ ├── common_Icon_Close_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Close_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_Comment_15x15.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comment_15x15@2x.png │ │ ├── common_Icon_Comment_15x15_Selected.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comment_15x15_Selected@2x.png │ │ ├── common_Icon_Comment_15x15_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comment_15x15_Selected_UIMode_Night@2x.png │ │ ├── common_Icon_Comment_15x15_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comment_15x15_UIMode_Night@2x.png │ │ ├── common_Icon_Comment_16x16.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comment_16x16@2x.png │ │ ├── common_Icon_Comment_16x16_White.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comment_16x16_White@2x.png │ │ ├── common_Icon_Comment_16x16_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comment_16x16_White_UIMode_Night@2x.png │ │ ├── common_Icon_Comment_16x19.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comment_16x19@2x.png │ │ ├── common_Icon_Comment_16x19_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comment_16x19_UIMode_Night@2x.png │ │ ├── common_Icon_Comment_26x26.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comment_26x26@2x.png │ │ ├── common_Icon_Comments2_22x22_White_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comments2_22x22_White_UIMode_Day@2x.png │ │ ├── common_Icon_Comments2_22x22_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comments2_22x22_White_UIMode_Night@2x.png │ │ ├── common_Icon_Comments_12x12.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comments_12x12@2x.png │ │ ├── common_Icon_Comments_12x12_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comments_12x12_UIMode_Night@2x.png │ │ ├── common_Icon_Comments_12x12_White.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comments_12x12_White@2x.png │ │ ├── common_Icon_Comments_12x12_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comments_12x12_White_UIMode_Night@2x.png │ │ ├── common_Icon_Comments_22x22_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comments_22x22_UIMode_Day@2x.png │ │ ├── common_Icon_Comments_22x22_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comments_22x22_UIMode_Night@2x.png │ │ ├── common_Icon_Comments_22x22_White_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comments_22x22_White_UIMode_Day@2x.png │ │ ├── common_Icon_Comments_22x22_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Comments_22x22_White_UIMode_Night@2x.png │ │ ├── common_Icon_Complete_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Complete_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_Complete_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Complete_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_CopyLink_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_CopyLink_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_CopyLink_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_CopyLink_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_Copy_15x15.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Copy_15x15@2x.png │ │ ├── common_Icon_Copy_24x24_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Copy_24x24_UIMode_Day@2x.png │ │ ├── common_Icon_Copy_24x24_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Copy_24x24_UIMode_Night@2x.png │ │ ├── common_Icon_CreateScore_Normal.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_CreateScore_Normal@2x.png │ │ ├── common_Icon_CreateScore_Selected.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_CreateScore_Selected@2x.png │ │ ├── common_Icon_CurrentObject_22x22_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_CurrentObject_22x22_UIMode_Day@2x.png │ │ ├── common_Icon_CurrentObject_22x22_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_CurrentObject_22x22_UIMode_Night@2x.png │ │ ├── common_Icon_DownArrow_10x6.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_DownArrow_10x6@2x.png │ │ ├── common_Icon_DownArrow_10x6_5.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_DownArrow_10x6_5@2x.png │ │ ├── common_Icon_DownArrow_10x6_5_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_DownArrow_10x6_5_UIMode_Night@2x.png │ │ ├── common_Icon_DownArrow_10x6_Blue.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_DownArrow_10x6_Blue@2x.png │ │ ├── common_Icon_Downlaod_26x26.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Downlaod_26x26@2x.png │ │ ├── common_Icon_DownloadButtonNormal_54x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_DownloadButtonNormal_54x26_UIMode_Day@2x.png │ │ ├── common_Icon_DownloadButtonNormal_54x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_DownloadButtonNormal_54x26_UIMode_Night@2x.png │ │ ├── common_Icon_Download_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Download_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_Download_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Download_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_Edit_16x14_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Edit_16x14_UIMode_Day@2x.png │ │ ├── common_Icon_Error_10x10_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Error_10x10_UIMode_Day@2x.png │ │ ├── common_Icon_Error_10x10_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Error_10x10_UIMode_Night@2x.png │ │ ├── common_Icon_Export_22x22_White_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Export_22x22_White_UIMode_Day@2x.png │ │ ├── common_Icon_Export_22x22_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Export_22x22_White_UIMode_Night@2x.png │ │ ├── common_Icon_ExtensionContentButton_20x20_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ExtensionContentButton_20x20_UIMode_Day@2x.png │ │ ├── common_Icon_ExtensionContentButton_20x20_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ExtensionContentButton_20x20_UIMode_Night@2x.png │ │ ├── common_Icon_Failed_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Failed_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_Failed_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Failed_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_FavoriteSelected_26x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_FavoriteSelected_26x26_UIMode_Day@2x.png │ │ ├── common_Icon_FavoriteSelected_26x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_FavoriteSelected_26x26_UIMode_Night@2x.png │ │ ├── common_Icon_FavoriteSelected_26x26_White_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_FavoriteSelected_26x26_White_UIMode_Day@2x.png │ │ ├── common_Icon_FavoriteSelected_26x26_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_FavoriteSelected_26x26_White_UIMode_Night@2x.png │ │ ├── common_Icon_FavoriteSelected_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_FavoriteSelected_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_FavoriteSelected_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_FavoriteSelected_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_Favorite_22x22_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Favorite_22x22_UIMode_Day@2x.png │ │ ├── common_Icon_Favorite_22x22_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Favorite_22x22_UIMode_Night@2x.png │ │ ├── common_Icon_Favorite_22x22_White_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Favorite_22x22_White_UIMode_Day@2x.png │ │ ├── common_Icon_Favorite_22x22_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Favorite_22x22_White_UIMode_Night@2x.png │ │ ├── common_Icon_Favorite_26x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Favorite_26x26_UIMode_Day@2x.png │ │ ├── common_Icon_Favorite_26x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Favorite_26x26_UIMode_Night@2x.png │ │ ├── common_Icon_Favorite_26x26_White_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Favorite_26x26_White_UIMode_Day@2x.png │ │ ├── common_Icon_Favorite_26x26_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Favorite_26x26_White_UIMode_Night@2x.png │ │ ├── common_Icon_Favorite_28x28.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Favorite_28x28@2x.png │ │ ├── common_Icon_Favorite_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Favorite_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_Favorite_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Favorite_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_Favority_38x38_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Favority_38x38_UIMode_Day@2x.png │ │ ├── common_Icon_Favority_38x38_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Favority_38x38_UIMode_Night@2x.png │ │ ├── common_Icon_FeedBack_38x38_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_FeedBack_38x38_UIMode_Day@2x.png │ │ ├── common_Icon_FeedBack_38x38_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_FeedBack_38x38_UIMode_Night@2x.png │ │ ├── common_Icon_FellowButtonNormal_54x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_FellowButtonNormal_54x26_UIMode_Day@2x.png │ │ ├── common_Icon_FellowButtonNormal_54x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_FellowButtonNormal_54x26_UIMode_Night@2x.png │ │ ├── common_Icon_FellowButtonSelected_54x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_FellowButtonSelected_54x26_UIMode_Day@2x.png │ │ ├── common_Icon_FellowButtonSelected_54x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_FellowButtonSelected_54x26_UIMode_Night@2x.png │ │ ├── common_Icon_Fire_12x12.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Fire_12x12@2x.png │ │ ├── common_Icon_Fire_12x12_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Fire_12x12_UIMode_Night@2x.png │ │ ├── common_Icon_Font_26x26_Black_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Font_26x26_Black_UIMode_Day@2x.png │ │ ├── common_Icon_Font_26x26_Black_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Font_26x26_Black_UIMode_Night@2x.png │ │ ├── common_Icon_Font_26x26_Gray_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Font_26x26_Gray_UIMode_Day@2x.png │ │ ├── common_Icon_Font_26x26_Gray_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Font_26x26_Gray_UIMode_Night@2x.png │ │ ├── common_Icon_Forward_20x20.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Forward_20x20@2x.png │ │ ├── common_Icon_Forward_20x20_Black_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Forward_20x20_Black_UIMode_Day@2x.png │ │ ├── common_Icon_Forward_20x20_Black_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Forward_20x20_Black_UIMode_Night@2x.png │ │ ├── common_Icon_Forward_20x20_Gray_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Forward_20x20_Gray_UIMode_Day@2x.png │ │ ├── common_Icon_Forward_20x20_Gray_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Forward_20x20_Gray_UIMode_Night@2x.png │ │ ├── common_Icon_Forward_26x26.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Forward_26x26@2x.png │ │ ├── common_Icon_Forward_26x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Forward_26x26_UIMode_Day@2x.png │ │ ├── common_Icon_Forward_26x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Forward_26x26_UIMode_Night@2x.png │ │ ├── common_Icon_Forward_9x16.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Forward_9x16@2x.png │ │ ├── common_Icon_GSAppQRCode_50x50.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GSAppQRCode_50x50@2x.png │ │ ├── common_Icon_GameScoreBadge_16x16.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GameScoreBadge_16x16@2x.png │ │ ├── common_Icon_GameScoreBadge_16x16_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GameScoreBadge_16x16_UIMode_Night@2x.png │ │ ├── common_Icon_GameScoreTotalScoreBg_16x18.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GameScoreTotalScoreBg_16x18@2x.png │ │ ├── common_Icon_GameScoreTotalScoreBg_16x18_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GameScoreTotalScoreBg_16x18_UIMode_Night@2x.png │ │ ├── common_Icon_GameScore_13x11.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GameScore_13x11@2x.png │ │ ├── common_Icon_GameScore_13x11_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GameScore_13x11_UIMode_Night@2x.png │ │ ├── common_Icon_GameScore_14x14_Green.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GameScore_14x14_Green@2x.png │ │ ├── common_Icon_GameScore_14x14_Green_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GameScore_14x14_Green_UIMode_Night@2x.png │ │ ├── common_Icon_GameScore_16x14.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GameScore_16x14@2x.png │ │ ├── common_Icon_GameScore_16x14_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GameScore_16x14_UIMode_Night@2x.png │ │ ├── common_Icon_GameScore_72x13_5.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GameScore_72x13_5@2x.png │ │ ├── common_Icon_GameScore_72x13_5_Selected.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GameScore_72x13_5_Selected@2x.png │ │ ├── common_Icon_GameScore_72x13_5_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GameScore_72x13_5_Selected_UIMode_Night@2x.png │ │ ├── common_Icon_GameScore_72x13_5_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GameScore_72x13_5_UIMode_Night@2x.png │ │ ├── common_Icon_Game_26x26.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Game_26x26@2x.png │ │ ├── common_Icon_GamerSkyLogo_101x33.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_GamerSkyLogo_101x33@2x.png │ │ ├── common_Icon_HDSelected_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_HDSelected_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_HDSelected_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_HDSelected_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_HD_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_HD_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_HD_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_HD_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_Index1_16x16_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Index1_16x16_UIMode_Day@2x.png │ │ ├── common_Icon_Index1_16x16_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Index1_16x16_UIMode_Night@2x.png │ │ ├── common_Icon_Index1_16x18.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Index1_16x18@2x.png │ │ ├── common_Icon_Index2_16x16_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Index2_16x16_UIMode_Day@2x.png │ │ ├── common_Icon_Index2_16x16_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Index2_16x16_UIMode_Night@2x.png │ │ ├── common_Icon_Index2_16x18.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Index2_16x18@2x.png │ │ ├── common_Icon_Index3_16x16_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Index3_16x16_UIMode_Day@2x.png │ │ ├── common_Icon_Index3_16x16_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Index3_16x16_UIMode_Night@2x.png │ │ ├── common_Icon_Index3_16x18.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Index3_16x18@2x.png │ │ ├── common_Icon_Index_14x14_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Index_14x14_UIMode_Day@2x.png │ │ ├── common_Icon_Index_14x14_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Index_14x14_UIMode_Night@2x.png │ │ ├── common_Icon_LeftTopSignalPoint_15x15_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_LeftTopSignalPoint_15x15_UIMode_Day@2x.png │ │ ├── common_Icon_LeftTopSignalPoint_15x15_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_LeftTopSignalPoint_15x15_UIMode_Night@2x.png │ │ ├── common_Icon_Link_12x13.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Link_12x13@2x.png │ │ ├── common_Icon_Link_12x13_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Link_12x13_UIMode_Night@2x.png │ │ ├── common_Icon_ListStylePieces_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ListStylePieces_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_ListStylePieces_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ListStylePieces_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_ListStyleRows_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ListStyleRows_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_ListStyleRows_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ListStyleRows_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_Login_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Login_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_Login_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Login_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_Message_38x38_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Message_38x38_UIMode_Day@2x.png │ │ ├── common_Icon_Message_38x38_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Message_38x38_UIMode_Night@2x.png │ │ ├── common_Icon_MoreRed_13x13_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_MoreRed_13x13_UIMode_Day@2x.png │ │ ├── common_Icon_MoreRed_13x13_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_MoreRed_13x13_UIMode_Night@2x.png │ │ ├── common_Icon_More_20x20_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_More_20x20_UIMode_Day@2x.png │ │ ├── common_Icon_More_20x20_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_More_20x20_UIMode_Night@2x.png │ │ ├── common_Icon_More_22x22_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_More_22x22_UIMode_Day@2x.png │ │ ├── common_Icon_More_22x22_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_More_22x22_UIMode_Night@2x.png │ │ ├── common_Icon_More_26x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_More_26x26_UIMode_Day@2x.png │ │ ├── common_Icon_More_26x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_More_26x26_UIMode_Night@2x.png │ │ ├── common_Icon_MyCommentReplies_25x25_UIMode_Night@2x.dataset │ │ │ ├── Contents.json │ │ │ └── common_Icon_MyCommentReplies_25x25_UIMode_Night@2x.psd │ │ ├── common_Icon_MyCommentReplies_38x38_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_MyCommentReplies_38x38_UIMode_Day@2x.png │ │ ├── common_Icon_MyCommentReplies_38x38_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_MyCommentReplies_38x38_UIMode_Night@2x.png │ │ ├── common_Icon_NewComment_26x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_NewComment_26x26_UIMode_Day@2x.png │ │ ├── common_Icon_NewComment_26x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_NewComment_26x26_UIMode_Night@2x.png │ │ ├── common_Icon_NewComment_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_NewComment_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_NewComment_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_NewComment_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_News_26x26.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_News_26x26@2x.png │ │ ├── common_Icon_NightMode_38x38_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_NightMode_38x38_UIMode_Day@2x.png │ │ ├── common_Icon_NightMode_38x38_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_NightMode_38x38_UIMode_Night@2x.png │ │ ├── common_Icon_Notify_26x26.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Notify_26x26@2x.png │ │ ├── common_Icon_NullContent_Search_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_NullContent_Search_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_NullContent_Search_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_NullContent_Search_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_Open_26x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Open_26x26_UIMode_Day@2x.png │ │ ├── common_Icon_Open_26x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Open_26x26_UIMode_Night@2x.png │ │ ├── common_Icon_OptionButton_20x20_Red_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_OptionButton_20x20_Red_UIMode_Day@2x.png │ │ ├── common_Icon_OptionButton_20x20_Red_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_OptionButton_20x20_Red_UIMode_Night@2x.png │ │ ├── common_Icon_OptionButton_20x20_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_OptionButton_20x20_UIMode_Day@2x.png │ │ ├── common_Icon_OptionButton_20x20_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_OptionButton_20x20_UIMode_Night@2x.png │ │ ├── common_Icon_Order_22x22_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Order_22x22_UIMode_Day@2x.png │ │ ├── common_Icon_Order_22x22_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Order_22x22_UIMode_Night@2x.png │ │ ├── common_Icon_PasswordLock_16x16_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PasswordLock_16x16_UIMode_Day@2x.png │ │ ├── common_Icon_PasswordLock_16x16_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PasswordLock_16x16_UIMode_Night@2x.png │ │ ├── common_Icon_PasswordUnlock_16x16_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PasswordUnlock_16x16_UIMode_Day@2x.png │ │ ├── common_Icon_PasswordUnlock_16x16_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PasswordUnlock_16x16_UIMode_Night@2x.png │ │ ├── common_Icon_Password_16x16_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Password_16x16_UIMode_Day.png │ │ ├── common_Icon_PengYouQuan_24x24.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PengYouQuan_24x24@2x.png │ │ ├── common_Icon_PengYouQuan_50x50.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PengYouQuan_50x50@2x.png │ │ ├── common_Icon_Phone_13x18_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Phone_13x18_UIMode_Day@2x.png │ │ ├── common_Icon_Platform_PC_56x56.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Platform_PC_56x56@2x.png │ │ ├── common_Icon_Platform_PS3_56x56.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Platform_PS3_56x56@2x.png │ │ ├── common_Icon_Platform_PS4_56x56.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Platform_PS4_56x56@2x.png │ │ ├── common_Icon_Platform_XBox360_56x56.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Platform_XBox360_56x56@2x.png │ │ ├── common_Icon_Platform_XBoxOne_56x56.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Platform_XBoxOne_56x56@2x.png │ │ ├── common_Icon_Play_12x12_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Play_12x12_UIMode_Day@2x.png │ │ ├── common_Icon_Play_58x58_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Play_58x58_UIMode_Day@2x.png │ │ ├── common_Icon_Play_64x64_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Play_64x64_UIMode_Day@2x.png │ │ ├── common_Icon_Play_64x64_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Play_64x64_UIMode_Night@2x.png │ │ ├── common_Icon_Play_66x66_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Play_66x66_UIMode_Day@2x.png │ │ ├── common_Icon_Play_66x66_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Play_66x66_UIMode_Night@2x.png │ │ ├── common_Icon_PraiseButton_16x19.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PraiseButton_16x19@2x.png │ │ ├── common_Icon_PraiseButton_16x19_Selected.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PraiseButton_16x19_Selected@2x.png │ │ ├── common_Icon_PraiseButton_16x19_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PraiseButton_16x19_Selected_UIMode_Night@2x.png │ │ ├── common_Icon_PraiseButton_16x19_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PraiseButton_16x19_UIMode_Night@2x.png │ │ ├── common_Icon_PraiseDisabled_22x22_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PraiseDisabled_22x22_UIMode_Day@2x.png │ │ ├── common_Icon_PraiseTread_14x14.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PraiseTread_14x14@2x.png │ │ ├── common_Icon_Praise_15x15.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Praise_15x15@2x.png │ │ ├── common_Icon_Praise_15x15_Green_Selected.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Praise_15x15_Green_Selected@2x.png │ │ ├── common_Icon_Praise_15x15_Green_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Praise_15x15_Green_Selected_UIMode_Night@2x.png │ │ ├── common_Icon_Praise_15x15_Selected.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Praise_15x15_Selected@2x.png │ │ ├── common_Icon_Praise_15x15_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Praise_15x15_Selected_UIMode_Night@2x.png │ │ ├── common_Icon_Praise_15x15_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Praise_15x15_UIMode_Night@2x.png │ │ ├── common_Icon_Praise_22x22_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Praise_22x22_UIMode_Day@2x.png │ │ ├── common_Icon_Praise_37x37_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Praise_37x37_UIMode_Day@2x.png │ │ ├── common_Icon_PromotionAtTopRight_50x50.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PromotionAtTopRight_50x50@2x.png │ │ ├── common_Icon_PromotionAtTopRight_50x50_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PromotionAtTopRight_50x50_UIMode_Night@2x.png │ │ ├── common_Icon_PromotionBadge_20x20.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PromotionBadge_20x20@2x.png │ │ ├── common_Icon_PromotionBadge_30x30.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PromotionBadge_30x30@2x.png │ │ ├── common_Icon_PromotionBadge_45x45.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PromotionBadge_45x45@2x.png │ │ ├── common_Icon_PromotionBadge_45x45_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_PromotionBadge_45x45_UIMode_Night@2x.png │ │ ├── common_Icon_QQZone_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_QQZone_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_QQZone_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_QQZone_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_QQZone_50x50.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_QQZone_50x50@2x.png │ │ ├── common_Icon_QQ_24x24.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_QQ_24x24@2x.png │ │ ├── common_Icon_QQ_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_QQ_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_QQ_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_QQ_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_QQ_44x44.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_QQ_44x44@2x.png │ │ ├── common_Icon_QQ_50x50.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_QQ_50x50@2x.png │ │ ├── common_Icon_QQ_60x60_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_QQ_60x60_UIMode_Day@2x.png │ │ ├── common_Icon_QQ_60x60_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_QQ_60x60_UIMode_Night@2x.png │ │ ├── common_Icon_QZone_24x24.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_QZone_24x24@2x.png │ │ ├── common_Icon_Recommend_10x10.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Recommend_10x10@2x.png │ │ ├── common_Icon_Recommend_10x10_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Recommend_10x10_UIMode_Night@2x.png │ │ ├── common_Icon_Refresh_20x20_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Refresh_20x20_UIMode_Day@2x.png │ │ ├── common_Icon_Refresh_20x20_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Refresh_20x20_UIMode_Night@2x.png │ │ ├── common_Icon_Refresh_22x22_White_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Refresh_22x22_White_UIMode_Day@2x.png │ │ ├── common_Icon_Refresh_22x22_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Refresh_22x22_White_UIMode_Night@2x.png │ │ ├── common_Icon_Refresh_26x26_Black_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Refresh_26x26_Black_UIMode_Day@2x.png │ │ ├── common_Icon_Refresh_26x26_Black_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Refresh_26x26_Black_UIMode_Night@2x.png │ │ ├── common_Icon_Refresh_26x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Refresh_26x26_UIMode_Day@2x.png │ │ ├── common_Icon_Refresh_26x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Refresh_26x26_UIMode_Night@2x.png │ │ ├── common_Icon_Refresh_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Refresh_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_Refresh_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Refresh_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_Remove_12x12.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Remove_12x12@2x.png │ │ ├── common_Icon_Remove_12x12_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Remove_12x12_UIMode_Night@2x.png │ │ ├── common_Icon_Remove_15x15.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Remove_15x15@2x.png │ │ ├── common_Icon_Remove_15x15_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Remove_15x15_UIMode_Night@2x.png │ │ ├── common_Icon_Ribbon_94x22.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Ribbon_94x22@2x.png │ │ ├── common_Icon_Ribbon_94x22_Highlight.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Ribbon_94x22_Highlight@2x.png │ │ ├── common_Icon_Ribbon_94x22_Highlight_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Ribbon_94x22_Highlight_UIMode_Night@2x.png │ │ ├── common_Icon_Ribbon_94x22_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Ribbon_94x22_UIMode_Night@2x.png │ │ ├── common_Icon_RightArrow_4.5x7_Gray_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_RightArrow_4.5x7_Gray_UIMode_Day@2x.png │ │ ├── common_Icon_RightArrow_4.5x7_Gray_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_RightArrow_4.5x7_Gray_UIMode_Night@2x.png │ │ ├── common_Icon_SavePhoto_50x50.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_SavePhoto_50x50@2x.png │ │ ├── common_Icon_Search_16x16.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Search_16x16@2x.png │ │ ├── common_Icon_Search_16x16_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Search_16x16_UIMode_Night@2x.png │ │ ├── common_Icon_Search_22x22.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Search_22x22@2x.png │ │ ├── common_Icon_Search_22x22_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Search_22x22_UIMode_Night@2x.png │ │ ├── common_Icon_Search_22x22_White.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Search_22x22_White@2x.png │ │ ├── common_Icon_Search_22x22_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Search_22x22_White_UIMode_Night@2x.png │ │ ├── common_Icon_Search_38x38_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Search_38x38_UIMode_Day@2x.png │ │ ├── common_Icon_Search_38x38_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Search_38x38_UIMode_Night@2x.png │ │ ├── common_Icon_Setting_38x38_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Setting_38x38_UIMode_Day@2x.png │ │ ├── common_Icon_Setting_38x38_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Setting_38x38_UIMode_Night@2x.png │ │ ├── common_Icon_ShareFromURLContent_22x22_White_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ShareFromURLContent_22x22_White_UIMode_Day@2x.png │ │ ├── common_Icon_ShareFromURLContent_22x22_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ShareFromURLContent_22x22_White_UIMode_Night@2x.png │ │ ├── common_Icon_ShareOrFavoriteSelected_26x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ShareOrFavoriteSelected_26x26_UIMode_Day@2x.png │ │ ├── common_Icon_ShareOrFavoriteSelected_26x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ShareOrFavoriteSelected_26x26_UIMode_Night@2x.png │ │ ├── common_Icon_ShareOrFavorite_26x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ShareOrFavorite_26x26_UIMode_Day@2x.png │ │ ├── common_Icon_ShareOrFavorite_26x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ShareOrFavorite_26x26_UIMode_Night@2x.png │ │ ├── common_Icon_Share_17x13.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Share_17x13@2x.png │ │ ├── common_Icon_Share_17x13_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Share_17x13_UIMode_Night@2x.png │ │ ├── common_Icon_Share_22x22_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Share_22x22_UIMode_Day@2x.png │ │ ├── common_Icon_Share_22x22_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Share_22x22_UIMode_Night@2x.png │ │ ├── common_Icon_Share_22x22_White_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Share_22x22_White_UIMode_Day@2x.png │ │ ├── common_Icon_Share_22x22_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Share_22x22_White_UIMode_Night@2x.png │ │ ├── common_Icon_Share_26x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Share_26x26_UIMode_Day@2x.png │ │ ├── common_Icon_Share_26x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Share_26x26_UIMode_Night@2x.png │ │ ├── common_Icon_Share_26x26_White_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Share_26x26_White_UIMode_Day@2x.png │ │ ├── common_Icon_Share_26x26_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Share_26x26_White_UIMode_Night@2x.png │ │ ├── common_Icon_Share_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Share_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_Share_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Share_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_SoundFlag_30x23_5.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_SoundFlag_30x23_5@2x.png │ │ ├── common_Icon_SoundFlag_30x23_5_Selected.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_SoundFlag_30x23_5_Selected@2x.png │ │ ├── common_Icon_SourceContent_43x43_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_SourceContent_43x43_UIMode_Day@2x.png │ │ ├── common_Icon_SourceContent_43x43_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_SourceContent_43x43_UIMode_Night@2x.png │ │ ├── common_Icon_Star_12x12.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_12x12@2x.png │ │ ├── common_Icon_Star_12x12_Actived.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_12x12_Actived@2x.png │ │ ├── common_Icon_Star_12x12_Actived_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_12x12_Actived_UIMode_Night@2x.png │ │ ├── common_Icon_Star_12x12_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_12x12_UIMode_Night@2x.png │ │ ├── common_Icon_Star_15x14.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_15x14@2x.png │ │ ├── common_Icon_Star_15x14_Actived.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_15x14_Actived@2x.png │ │ ├── common_Icon_Star_15x14_Actived_Green.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_15x14_Actived_Green@2x.png │ │ ├── common_Icon_Star_15x14_Actived_Green_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_15x14_Actived_Green_UIMode_Night@2x.png │ │ ├── common_Icon_Star_15x14_Actived_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_15x14_Actived_UIMode_Night@2x.png │ │ ├── common_Icon_Star_16x16.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_16x16@2x.png │ │ ├── common_Icon_Star_25x24.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_25x24@2x.png │ │ ├── common_Icon_Star_25x24_Actived.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_25x24_Actived@2x.png │ │ ├── common_Icon_Star_25x24_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_25x24_UIMode_Night@2x.png │ │ ├── common_Icon_Star_27x26.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_27x26@2x.png │ │ ├── common_Icon_Star_27x26_Actived.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_27x26_Actived@2x.png │ │ ├── common_Icon_Star_27x26_Actived_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_27x26_Actived_UIMode_Night@2x.png │ │ ├── common_Icon_Star_27x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Star_27x26_UIMode_Night@2x.png │ │ ├── common_Icon_SubscribeAdd_10x10.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_SubscribeAdd_10x10@2x.png │ │ ├── common_Icon_SubscribeAdd_10x10_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_SubscribeAdd_10x10_UIMode_Night@2x.png │ │ ├── common_Icon_SubscribeButtonNormal_54x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_SubscribeButtonNormal_54x26_UIMode_Day@2x.png │ │ ├── common_Icon_SubscribeButtonNormal_54x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_SubscribeButtonNormal_54x26_UIMode_Night@2x.png │ │ ├── common_Icon_SubscribeButtonSelected_54x26_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_SubscribeButtonSelected_54x26_UIMode_Day@2x.png │ │ ├── common_Icon_SubscribeButtonSelected_54x26_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_SubscribeButtonSelected_54x26_UIMode_Night@2x.png │ │ ├── common_Icon_Subscribe_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Subscribe_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_Subscribe_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Subscribe_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_Tag_16x16.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Tag_16x16@2x.png │ │ ├── common_Icon_TextBeginSign_25x25.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_TextBeginSign_25x25@2x.png │ │ ├── common_Icon_Timer_10x10.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Timer_10x10@2x.png │ │ ├── common_Icon_Timer_10x10_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Timer_10x10_UIMode_Night@2x.png │ │ ├── common_Icon_Timer_18x18.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Timer_18x18@2x.png │ │ ├── common_Icon_Timer_18x18_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Timer_18x18_UIMode_Night@2x.png │ │ ├── common_Icon_ToRightArrow_15x25.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_ToRightArrow_15x25@2x.png │ │ ├── common_Icon_TreadButton_16x19.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_TreadButton_16x19@2x.png │ │ ├── common_Icon_TreadButton_16x19_Selected.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_TreadButton_16x19_Selected@2x.png │ │ ├── common_Icon_TreadButton_16x19_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_TreadButton_16x19_Selected_UIMode_Night@2x.png │ │ ├── common_Icon_TreadButton_16x19_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_TreadButton_16x19_UIMode_Night@2x.png │ │ ├── common_Icon_TreadDisabled_22x22_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_TreadDisabled_22x22_UIMode_Day@2x.png │ │ ├── common_Icon_Tread_15x15.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Tread_15x15@2x.png │ │ ├── common_Icon_Tread_15x15_Green_Selected.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Tread_15x15_Green_Selected@2x.png │ │ ├── common_Icon_Tread_15x15_Green_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Tread_15x15_Green_Selected_UIMode_Night@2x.png │ │ ├── common_Icon_Tread_15x15_Selected.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Tread_15x15_Selected@2x.png │ │ ├── common_Icon_Tread_15x15_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Tread_15x15_Selected_UIMode_Night@2x.png │ │ ├── common_Icon_Tread_15x15_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Tread_15x15_UIMode_Night@2x.png │ │ ├── common_Icon_Tread_22x22_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Tread_22x22_UIMode_Day@2x.png │ │ ├── common_Icon_Tread_37x37_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Tread_37x37_UIMode_Day@2x.png │ │ ├── common_Icon_UpArrow_6x3_Black_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_UpArrow_6x3_Black_UIMode_Day@2x.png │ │ ├── common_Icon_UpArrow_6x3_Black_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_UpArrow_6x3_Black_UIMode_Night@2x.png │ │ ├── common_Icon_UpDownArrow_6x7.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_UpDownArrow_6x7@2x.png │ │ ├── common_Icon_UpDownArrow_6x7_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_UpDownArrow_6x7_UIMode_Night@2x.png │ │ ├── common_Icon_VerificationCode_16x16_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_VerificationCode_16x16_UIMode_Day@2x.png │ │ ├── common_Icon_VerificationCode_16x16_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_VerificationCode_16x16_UIMode_Night@2x.png │ │ ├── common_Icon_WeChatTimeLine_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeChatTimeLine_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_WeChatTimeLine_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeChatTimeLine_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_WeChat_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeChat_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_WeChat_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeChat_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_WeChat_44x44.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeChat_44x44@2x.png │ │ ├── common_Icon_WeChat_60x60_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeChat_60x60_UIMode_Day@2x.png │ │ ├── common_Icon_WeChat_60x60_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeChat_60x60_UIMode_Night@2x.png │ │ ├── common_Icon_WeiBo_24x24.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeiBo_24x24@2x.png │ │ ├── common_Icon_WeiBo_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeiBo_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_WeiBo_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeiBo_40x40_UIMode_Night@2x.png │ │ ├── common_Icon_WeiBo_44x44.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeiBo_44x44@2x.png │ │ ├── common_Icon_WeiBo_50x50.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeiBo_50x50@2x.png │ │ ├── common_Icon_WeiBo_60x60_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeiBo_60x60_UIMode_Day@2x.png │ │ ├── common_Icon_WeiBo_60x60_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeiBo_60x60_UIMode_Night@2x.png │ │ ├── common_Icon_WeiXin_24x24.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeiXin_24x24@2x.png │ │ ├── common_Icon_WeiXin_50x50.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_WeiXin_50x50@2x.png │ │ ├── common_Icon_Words_40x40_Selected_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Words_40x40_Selected_UIMode_Day@2x.png │ │ ├── common_Icon_Words_40x40_Selected_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Words_40x40_Selected_UIMode_Night@2x.png │ │ ├── common_Icon_Words_40x40_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Words_40x40_UIMode_Day@2x.png │ │ ├── common_Icon_Words_40x40_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Icon_Words_40x40_UIMode_Night@2x.png │ │ ├── common_ImageColor_BlackAlphaV0to1_1x40.imageset │ │ │ ├── Contents.json │ │ │ └── common_ImageColor_BlackAlphaV0to1_1x40@2x.png │ │ ├── common_Logo_174x41.imageset │ │ │ ├── Contents.json │ │ │ └── common_Logo_174x41@2x.png │ │ ├── common_Logo_71x17.imageset │ │ │ ├── Contents.json │ │ │ └── common_Logo_71x17@2x.png │ │ ├── common_MenuBackground_146x168.imageset │ │ │ ├── Contents.json │ │ │ └── common_MenuBackground_146x168@2x.png │ │ ├── common_NIcon_Play_64x64.imageset │ │ │ ├── Contents.json │ │ │ └── common_NIcon_Play_64x64@2x.png │ │ ├── common_NavigationBar_Background.imageset │ │ │ ├── Contents.json │ │ │ └── common_NavigationBar_Background@2x.png │ │ ├── common_Pixel_Transparent.imageset │ │ │ ├── Contents.json │ │ │ └── common_Pixel_Transparent@2x.png │ │ ├── common_Shadow_Bottom_1x5_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Shadow_Bottom_1x5_UIMode_Day@2x.png │ │ ├── common_Shadow_Bottom_1x5_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Shadow_Bottom_1x5_UIMode_Night@2x.png │ │ ├── common_Shadow_Top_1x2_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_Shadow_Top_1x2_UIMode_Day@2x.png │ │ ├── common_Shadow_Top_1x2_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_Shadow_Top_1x2_UIMode_Night@2x.png │ │ ├── common_User_DefaultHeadImage_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── common_User_DefaultHeadImage_UIMode_Day@2x.png │ │ ├── common_User_DefaultHeadImage_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── common_User_DefaultHeadImage_UIMode_Night@2x.png │ │ ├── firstRunGuiderView_Background.imageset │ │ │ ├── Contents.json │ │ │ └── firstRunGuiderView_Background@2x.png │ │ ├── gameActivityIcon_30x30_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gameActivityIcon_30x30_UIMode_Day@2x.png │ │ ├── gameComingSoonSpacing_320_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gameComingSoonSpacing_320_UIMode_Day@2x.png │ │ ├── gameComingSoonSpacing_320_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gameComingSoonSpacing_320_UIMode_Night@2x.png │ │ ├── gameComingSoonSpacing_375_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gameComingSoonSpacing_375_UIMode_Day@2x.png │ │ ├── gameComingSoonSpacing_375_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gameComingSoonSpacing_375_UIMode_Night@2x.png │ │ ├── gameComingSoonSpacing_414_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gameComingSoonSpacing_414_UIMode_Day@2x.png │ │ ├── gameComingSoonSpacing_414_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gameComingSoonSpacing_414_UIMode_Night@2x.png │ │ ├── gameDetail_HorizontalSpliterLine_1x80.imageset │ │ │ ├── Contents.json │ │ │ └── gameDetail_HorizontalSpliterLine_1x80@2x.png │ │ ├── gameDetail_HorizontalSpliterLine_1x80_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gameDetail_HorizontalSpliterLine_1x80_UIMode_Night@2x.png │ │ ├── gameDetailsShare_24x24_White.imageset │ │ │ ├── Contents.json │ │ │ └── gameDetailsShare_24x24_White@2x.png │ │ ├── gameDetailsShare_24x24_White_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gameDetailsShare_24x24_White_UIMode_Night@2x.png │ │ ├── gameFindIcon_unfurled_13x12_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gameFindIcon_unfurled_13x12_UIMode_Day@2x.png │ │ ├── gameFindIcon_unfurled_13x12_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gameFindIcon_unfurled_13x12_UIMode_Night@2x.png │ │ ├── gameHomePageComment_48x48.imageset │ │ │ ├── Contents.json │ │ │ └── gameHomePageComment_48x48@2x.png │ │ ├── gameHomePageFindGame_48x48.imageset │ │ │ ├── Contents.json │ │ │ └── gameHomePageFindGame_48x48@2x.png │ │ ├── gameHomePageHistory_16x16_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gameHomePageHistory_16x16_UIMode_Day@2x.png │ │ ├── gameHomePageHistory_16x16_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gameHomePageHistory_16x16_UIMode_Night@2x.png │ │ ├── gameHomePageRanking_48x48.imageset │ │ │ ├── Contents.json │ │ │ └── gameHomePageRanking_48x48@2x.png │ │ ├── gameHomePageRankingsRightMask_10x60_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gameHomePageRankingsRightMask_10x60_UIMode_Day@2x.png │ │ ├── gameHomePageRankingsRightMask_10x60_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gameHomePageRankingsRightMask_10x60_UIMode_Night@2x.png │ │ ├── gameHomePageSale_48x48.imageset │ │ │ ├── Contents.json │ │ │ └── gameHomePageSale_48x48@2x.png │ │ ├── gameHomePageSpecial_48x48.imageset │ │ │ ├── Contents.json │ │ │ └── gameHomePageSpecial_48x48@2x.png │ │ ├── gameHomePageTraverseMore_16x28_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gameHomePageTraverseMore_16x28_UIMode_Day@2x.png │ │ ├── gameHomePageTraverseMore_16x28_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gameHomePageTraverseMore_16x28_UIMode_Night@2x.png │ │ ├── gameLikeIcon_ Normal_44x44_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gameLikeIcon_ Normal_44x44_UIMode_Day@2x.png │ │ ├── gameLikeIcon_ Normal_44x44_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gameLikeIcon_ Normal_44x44_UIMode_Night@2x.png │ │ ├── gameLikeIcon_select_44x44_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gameLikeIcon_select_44x44_UIMode_Day@2x.png │ │ ├── gameLikeIcon_select_44x44_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gameLikeIcon_select_44x44_UIMode_Night@2x.png │ │ ├── gamefindIcon_lowerSelect_8x12_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gamefindIcon_lowerSelect_8x12_UIMode_Day@2x.png │ │ ├── gamefindIcon_lowerSelect_8x12_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gamefindIcon_lowerSelect_8x12_UIMode_Night@2x.png │ │ ├── gamefindIcon_lower_8x12_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gamefindIcon_lower_8x12_UIMode_Day@2x.png │ │ ├── gamefindIcon_lower_8x12_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gamefindIcon_lower_8x12_UIMode_Night@2x.png │ │ ├── gamefindIcon_upwardSelect_8x12_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gamefindIcon_upwardSelect_8x12_UIMode_Day@2x.png │ │ ├── gamefindIcon_upwardSelect_8x12_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gamefindIcon_upwardSelect_8x12_UIMode_Night@2x.png │ │ ├── gamefindIcon_upward_8x12_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gamefindIcon_upward_8x12_UIMode_Day@2x.png │ │ ├── gamefindIcon_upward_8x12_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gamefindIcon_upward_8x12_UIMode_Night@2x.png │ │ ├── gamerSky_FaShouBiao_Cover.imageset │ │ │ ├── Contents.json │ │ │ └── gamerSky_FaShouBiao_Cover@2x.png │ │ ├── gamerSky_Logo.imageset │ │ │ ├── Contents.json │ │ │ └── gamerSky_Logo@2x.png │ │ ├── gamerSky_PingCeZhongXin_Cover.imageset │ │ │ ├── Contents.json │ │ │ └── gamerSky_PingCeZhongXin_Cover@2x.png │ │ ├── gamerSky_YouMinZhuanLan_Cover.imageset │ │ │ ├── Contents.json │ │ │ └── gamerSky_YouMinZhuanLan_Cover@2x.png │ │ ├── gsAppHTMLTemplate_ImgBoxer_Background.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppHTMLTemplate_ImgBoxer_Background@2x.png │ │ ├── gsAppHTMLTemplate_ImgBoxer_BackgroundLoadFailed.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppHTMLTemplate_ImgBoxer_BackgroundLoadFailed@2x.png │ │ ├── gsAppHTMLTemplate_ImgBoxer_LoadTheImage.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppHTMLTemplate_ImgBoxer_LoadTheImage@2x.png │ │ ├── gsAppHTMLTemplate_Video_Background.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppHTMLTemplate_Video_Background@2x.png │ │ ├── gsAppUIIconTextFieldInputView_BackgroundForLabelButton_1x36.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppUIIconTextFieldInputView_BackgroundForLabelButton_1x36@2x.png │ │ ├── gsAppUIIconTextFieldInputView_CancelButton_19x19_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppUIIconTextFieldInputView_CancelButton_19x19_UIMode_Day@2x.png │ │ ├── gsAppUIIconTextFieldInputView_CancelButton_19x19_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppUIIconTextFieldInputView_CancelButton_19x19_UIMode_Night@2x.png │ │ ├── gsAppUIImageBrowser_DragLeftToExit.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppUIImageBrowser_DragLeftToExit@2x.png │ │ ├── gsAppUIImageBrowser_DragRightToExit.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppUIImageBrowser_DragRightToExit@2x.png │ │ ├── gsAppUIImageBrowser_ReleaseToExit.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppUIImageBrowser_ReleaseToExit@2x.png │ │ ├── gsAppUISmartListElementView_ChatWordsBadge_AnotherWords_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppUISmartListElementView_ChatWordsBadge_AnotherWords_UIMode_Day@2x.png │ │ ├── gsAppUISmartListElementView_ChatWordsBadge_AnotherWords_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppUISmartListElementView_ChatWordsBadge_AnotherWords_UIMode_Night@2x.png │ │ ├── gsAppUISmartListElementView_ChatWordsBadge_MyWords_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppUISmartListElementView_ChatWordsBadge_MyWords_UIMode_Day@2x.png │ │ ├── gsAppUISmartListElementView_ChatWordsBadge_MyWords_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppUISmartListElementView_ChatWordsBadge_MyWords_UIMode_Night@2x.png │ │ ├── gsAppUITip_Background_236x156.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppUITip_Background_236x156@2x.png │ │ ├── gsAppUI_CommonOperateBar_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppUI_CommonOperateBar_UIMode_Day@2x.png │ │ ├── gsAppUI_CommonOperateBar_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gsAppUI_CommonOperateBar_UIMode_Night@2x.png │ │ ├── gsUICheckBox_IconChecked.imageset │ │ │ ├── Contents.json │ │ │ └── gsUICheckBox_IconChecked@2x.png │ │ ├── gsUICheckBox_IconNormal.imageset │ │ │ ├── Contents.json │ │ │ └── gsUICheckBox_IconNormal@2x.png │ │ ├── gsUIPopupView_CloseButton_Gray.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIPopupView_CloseButton_Gray@2x.png │ │ ├── gsUIPopupView_CloseButton_White.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIPopupView_CloseButton_White@2x.png │ │ ├── gsUIVideoPlayer_CloseButton_10x10.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIVideoPlayer_CloseButton_10x10@2x.png │ │ ├── gsUIVideoPlayer_FullScreenButtonSelected_20x20.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIVideoPlayer_FullScreenButtonSelected_20x20@2x.png │ │ ├── gsUIVideoPlayer_FullScreenButton_15x15.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIVideoPlayer_FullScreenButton_15x15@2x.png │ │ ├── gsUIVideoPlayer_FullScreenButton_20x20.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIVideoPlayer_FullScreenButton_20x20@2x.png │ │ ├── gsUIVideoPlayer_FullScreenButton_40x40.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIVideoPlayer_FullScreenButton_40x40@2x.png │ │ ├── gsUIVideoPlayer_PauseButton_16x20.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIVideoPlayer_PauseButton_16x20@2x.png │ │ ├── gsUIVideoPlayer_PauseButton_20x20.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIVideoPlayer_PauseButton_20x20@2x.png │ │ ├── gsUIVideoPlayer_PlayButton_16x20.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIVideoPlayer_PlayButton_16x20@2x.png │ │ ├── gsUIVideoPlayer_PlayButton_20x20.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIVideoPlayer_PlayButton_20x20@2x.png │ │ ├── gsUIVideoPlayer_ProgressDragger_13x13.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIVideoPlayer_ProgressDragger_13x13@2x.png │ │ ├── gsUIVideoPlayer_ReplayButton_20x20.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIVideoPlayer_ReplayButton_20x20@2x.png │ │ ├── gsUIVideoView_PauseButton.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIVideoView_PauseButton@2x.png │ │ ├── gsUIVideoView_PlayButton.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIVideoView_PlayButton@2x.png │ │ ├── gsUIViewController_LeftBorderShadow_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIViewController_LeftBorderShadow_UIMode_Day@2x.png │ │ ├── gsUIViewController_LeftBorderShadow_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── gsUIViewController_LeftBorderShadow_UIMode_Night@2x.png │ │ ├── icon_BackArrow_20x20_Gray.imageset │ │ │ ├── Contents.json │ │ │ └── icon_BackArrow_20x20_Gray@2x.png │ │ ├── icon_ForwardArrow_20x20_Gray.imageset │ │ │ ├── Contents.json │ │ │ └── icon_ForwardArrow_20x20_Gray@2x.png │ │ ├── icon_New_18x8.imageset │ │ │ ├── Contents.json │ │ │ └── icon_New_18x8@2x.png │ │ ├── icon_New_18x8_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── icon_New_18x8_UIMode_Night@2x.png │ │ ├── icon_Praise_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── icon_Praise_UIMode_Day@2x.png │ │ ├── icon_Praise_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── icon_Praise_UIMode_Night@2x.png │ │ ├── icon_Praised_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── icon_Praised_UIMode_Day@2x.png │ │ ├── icon_Praised_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── icon_Praised_UIMode_Night@2x.png │ │ ├── imageBrowerReturn_whiteColor20x20.imageset │ │ │ ├── Contents.json │ │ │ └── imageBrowerReturn_whiteColor20x20@2x.png │ │ ├── imgSet_BottomBarBackground.imageset │ │ │ ├── Contents.json │ │ │ └── imgSet_BottomBarBackground@2x.png │ │ ├── imgSet_ExpandIcon.imageset │ │ │ ├── Contents.json │ │ │ └── imgSet_ExpandIcon@2x.png │ │ ├── img_Badge_GIF.imageset │ │ │ ├── Contents.json │ │ │ └── img_Badge_GIF@2x.png │ │ ├── launchScreen_LogoImage.imageset │ │ │ ├── Contents.json │ │ │ └── launchScreen_LogoImage@3x.png │ │ ├── mainViewSideBar_OptionButton_TouchingBackgroundImage.imageset │ │ │ ├── Contents.json │ │ │ └── mainViewSideBar_OptionButton_TouchingBackgroundImage@2x.png │ │ ├── originalAllColumns10x10.imageset │ │ │ ├── Contents.json │ │ │ └── originalAllColumns10x10@2x.png │ │ ├── originalAllColumns10x10_Night.imageset │ │ │ ├── Contents.json │ │ │ └── originalAllColumns10x10_Night.png │ │ ├── protocolSelection_14x14_UIMode_Day.imageset │ │ │ ├── Contents.json │ │ │ └── protocolSelection_14x14_UIMode_Day@2x.png │ │ ├── protocolSelection_14x14_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── protocolSelection_14x14_UIMode_Night@2x.png │ │ ├── shareView_elect_15x15.imageset │ │ │ ├── Contents.json │ │ │ └── shareView_elect_15x15@2x.png │ │ ├── shareView_noElect_15x15.imageset │ │ │ ├── Contents.json │ │ │ └── shareView_noElect_15x15@2x.png │ │ ├── userNewsNotification_48x48.imageset │ │ │ ├── Contents.json │ │ │ └── userNewsNotification_48x48@2x.png │ │ ├── userNewsNotification_48x48_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── userNewsNotification_48x48_UIMode_Night@2x.png │ │ ├── userNotificationPullDownMenu_125x150.imageset │ │ │ ├── Contents.json │ │ │ └── userNotificationPullDownMenu_125x150@2x.png │ │ ├── userNotificationPullDownMenu_125x150_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── userNotificationPullDownMenu_125x150_UIMode_Night@2x.png │ │ ├── userNotificationPullDown_10x7.imageset │ │ │ ├── Contents.json │ │ │ └── userNotificationPullDown_10x7@2x.png │ │ ├── userNotificationPullDown_10x7_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── userNotificationPullDown_10x7_UIMode_Night@2x.png │ │ ├── userNotificationQuanZi_12x13.imageset │ │ │ ├── Contents.json │ │ │ └── userNotificationQuanZi_12x13@2x.png │ │ ├── userNotificationSetting_25x25.imageset │ │ │ ├── Contents.json │ │ │ └── userNotificationSetting_25x25@2x.png │ │ ├── userNotificationXinWen_12x13.imageset │ │ │ ├── Contents.json │ │ │ └── userNotificationXinWen_12x13@2x.png │ │ ├── userNotificationZhongPing_12x13.imageset │ │ │ ├── Contents.json │ │ │ └── userNotificationZhongPing_12x13@2x.png │ │ ├── userOfficialdomNotification_48x48.imageset │ │ │ ├── Contents.json │ │ │ └── userOfficialdomNotification_48x48@2x.png │ │ ├── userOfficialdomNotification_48x48_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── userOfficialdomNotification_48x48_UIMode_Night@2x.png │ │ ├── userPraiseNotification_48x48.imageset │ │ │ ├── Contents.json │ │ │ └── userPraiseNotification_48x48@2x.png │ │ ├── userPraiseNotification_48x48_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── userPraiseNotification_48x48_UIMode_Night@2x.png │ │ ├── userReadTag_25x25.imageset │ │ │ ├── Contents.json │ │ │ └── userReadTag_25x25@2x.png │ │ ├── userReplyNotification_48x48.imageset │ │ │ ├── Contents.json │ │ │ └── userReplyNotification_48x48@2x.png │ │ ├── userReplyNotification_48x48_UIMode_Night.imageset │ │ │ ├── Contents.json │ │ │ └── userReplyNotification_48x48_UIMode_Night@2x.png │ │ └── user_DefaultHeadImage.imageset │ │ │ ├── Contents.json │ │ │ └── user_DefaultHeadImage@2x.png │ │ └── Placeholder │ │ ├── Contents.json │ │ ├── hg_default-error.imageset │ │ ├── Contents.json │ │ └── hg-error.pdf │ │ └── hg_default-no_connection.imageset │ │ ├── Contents.json │ │ └── hg-no_connection.pdf │ ├── JSON │ └── MainVCSettings.json │ └── Plist │ ├── FilterData.plist │ ├── GameCategoryData.plist │ ├── GameHomeHeaderData.plist │ ├── GameHomeSectionData.plist │ ├── default_theme.plist │ └── night_theme.plist ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md └── Screenshots ├── Game1.gif ├── Game2.gif ├── Game3.gif └── News.gif /GamerSky/Bridging-Header/GamerSky-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | #ifndef Header_h 6 | #define Header_h 7 | 8 | /// Bug 统计 9 | #import 10 | 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /GamerSky/Classes/Common/AppKey.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppKey.swift 3 | // GamerSky 4 | // 5 | // Created by QY on 2018/5/3. 6 | // Copyright © 2018年 QY. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | /// BuglyID 12 | let BuglyID = "d1a584750d" 13 | -------------------------------------------------------------------------------- /GamerSky/Classes/Module/User/Model/Preference.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Preference.swift 3 | // GamerSky 4 | // 5 | // Created by QY on 2018/4/4. 6 | // Copyright © 2018年 QY. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | struct Preference: Codable { 12 | 13 | /// 当前选择的主题 14 | var currentTheme: AppTheme 15 | /// 是否需要无图 16 | var isNoneImage: Bool 17 | } 18 | -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon20x20@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon20x20@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon20x20@2x~ipad.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon20x20@3x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon20x20~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon20x20~ipad.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@2x~ipad.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon29x29~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon29x29~ipad.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@2x~ipad.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon40x40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon40x40~ipad.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon76x76@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon76x76@2x~ipad.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon76x76~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon76x76~ipad.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon83.5x83.5@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon83.5x83.5@2x~ipad.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ClubLongImageContentIcon_28x14_UIMode_Day.imageset/ClubLongImageContentIcon_28x14_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ClubLongImageContentIcon_28x14_UIMode_Day.imageset/ClubLongImageContentIcon_28x14_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/CommentReturn_blackColor20x20.imageset/CommentReturn_blackColor20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/CommentReturn_blackColor20x20.imageset/CommentReturn_blackColor20x20@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/CommentReturn_blackColor20x20_Night.imageset/CommentReturn_blackColor20x20_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/CommentReturn_blackColor20x20_Night.imageset/CommentReturn_blackColor20x20_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/CommentReturn_whiteColor20x20.imageset/CommentReturn_whiteColor20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/CommentReturn_whiteColor20x20.imageset/CommentReturn_whiteColor20x20@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageCollection22x22.imageset/ContentPageCollection22x22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageCollection22x22.imageset/ContentPageCollection22x22@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageCollection22x22_Night.imageset/ContentPageCollection22x22_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageCollection22x22_Night.imageset/ContentPageCollection22x22_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageCollection_select22x22.imageset/ContentPageCollection_select22x22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageCollection_select22x22.imageset/ContentPageCollection_select22x22@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageCollection_select22x22_Night.imageset/ContentPageCollection_select22x22_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageCollection_select22x22_Night.imageset/ContentPageCollection_select22x22_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageComment22x22.imageset/ContentPageComment22x22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageComment22x22.imageset/ContentPageComment22x22@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageComment22x22_Night.imageset/ContentPageComment22x22_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageComment22x22_Night.imageset/ContentPageComment22x22_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageForwarding22x22.imageset/ContentPageForwarding22x22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageForwarding22x22.imageset/ContentPageForwarding22x22@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageForwarding22x22_Night.imageset/ContentPageForwarding22x22_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageForwarding22x22_Night.imageset/ContentPageForwarding22x22_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageFunction_20x20_UIMode_Day.imageset/ContentPageFunction_20x20_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageFunction_20x20_UIMode_Day.imageset/ContentPageFunction_20x20_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageFunction_20x20_UIMode_Night.imageset/ContentPageFunction_20x20_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageFunction_20x20_UIMode_Night.imageset/ContentPageFunction_20x20_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageFunction_20x20_White_UIMode_Day.imageset/ContentPageFunction_20x20_White_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ContentPageFunction_20x20_White_UIMode_Day.imageset/ContentPageFunction_20x20_White_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/GameHomePage_Time_16x16.imageset/GameHomePage_Time_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/GameHomePage_Time_16x16.imageset/GameHomePage_Time_16x16@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/GameHomePage_Time_Night_16x16.imageset/GameHomePage_Time_Night_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/GameHomePage_Time_Night_16x16.imageset/GameHomePage_Time_Night_16x16@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/NewsAlertsShareIcon_15x15_UIMode_Day.imageset/NewsAlertsShareIcon_15x15_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/NewsAlertsShareIcon_15x15_UIMode_Day.imageset/NewsAlertsShareIcon_15x15_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/NewsAlertsShareIcon_15x15_UIMode_Night.imageset/NewsAlertsShareIcon_15x15_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/NewsAlertsShareIcon_15x15_UIMode_Night.imageset/NewsAlertsShareIcon_15x15_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/PhotoEditorsDownLoad_10x10.imageset/PhotoEditorsDownLoad_10x10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/PhotoEditorsDownLoad_10x10.imageset/PhotoEditorsDownLoad_10x10@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/PhotoEditorsHide_10x10.imageset/PhotoEditorsHide_10x10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/PhotoEditorsHide_10x10.imageset/PhotoEditorsHide_10x10@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/PhotoEditorsReturn_10x10.imageset/PhotoEditorsReturn_10x10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/PhotoEditorsReturn_10x10.imageset/PhotoEditorsReturn_10x10@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/PhotoEditorsShow_10x10.imageset/PhotoEditorsShow_10x10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/PhotoEditorsShow_10x10.imageset/PhotoEditorsShow_10x10@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ShareTheBrowser_24x24_UIMode_Day.imageset/ShareTheBrowser_24x24_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ShareTheBrowser_24x24_UIMode_Day.imageset/ShareTheBrowser_24x24_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ShareTheBrowser_24x24_UIMode_Night.imageset/ShareTheBrowser_24x24_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/ShareTheBrowser_24x24_UIMode_Night.imageset/ShareTheBrowser_24x24_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/UserBrowsingHistory.imageset/UserBrowsingHistory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/UserBrowsingHistory.imageset/UserBrowsingHistory@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/UserReadedHistory_Bin_20x20_UIMode_Day.imageset/UserReadedHistory_Bin_20x20_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/UserReadedHistory_Bin_20x20_UIMode_Day.imageset/UserReadedHistory_Bin_20x20_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/UserReadedHistory_Bin_20x20_UIMode_Night.imageset/UserReadedHistory_Bin_20x20_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/UserReadedHistory_Bin_20x20_UIMode_Night.imageset/UserReadedHistory_Bin_20x20_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/anonymousLogin_22x22.imageset/anonymousLogin_22x22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/anonymousLogin_22x22.imageset/anonymousLogin_22x22@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/anonymousLogin_22x22_Night.imageset/anonymousLogin_22x22_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/anonymousLogin_22x22_Night.imageset/anonymousLogin_22x22_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/anonymousOpen_22x22.imageset/anonymousOpen_22x22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/anonymousOpen_22x22.imageset/anonymousOpen_22x22@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/anonymousOpen_22x22_Night.imageset/anonymousOpen_22x22_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/anonymousOpen_22x22_Night.imageset/anonymousOpen_22x22_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/anonymousShutDown22x22.imageset/anonymousShutDown22x22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/anonymousShutDown22x22.imageset/anonymousShutDown22x22@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/anonymousShutDown22x22_Night.imageset/anonymousShutDown22x22_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/anonymousShutDown22x22_Night.imageset/anonymousShutDown22x22_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/clubSubject_defaultHeadeIcon_48x48.imageset/clubSubject_defaultHeadeIcon_48x48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/clubSubject_defaultHeadeIcon_48x48.imageset/clubSubject_defaultHeadeIcon_48x48@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/clubSubject_videoPlayIcon_50x50_UIMode_Day.imageset/clubSubject_videoPlayIcon_50x50_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/clubSubject_videoPlayIcon_50x50_UIMode_Day.imageset/clubSubject_videoPlayIcon_50x50_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_AddImageButton.imageset/club_AddImageButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_AddImageButton.imageset/club_AddImageButton@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_CreateTopicFloatButton.imageset/club_CreateTopicFloatButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_CreateTopicFloatButton.imageset/club_CreateTopicFloatButton@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_CreateTopicFloatButton_UIMode_Night.imageset/club_CreateTopicFloatButton_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_CreateTopicFloatButton_UIMode_Night.imageset/club_CreateTopicFloatButton_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_HideKeyboardButton.imageset/club_HideKeyboardButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_HideKeyboardButton.imageset/club_HideKeyboardButton@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_Icon_GIF_28x14.imageset/club_Icon_GIF_28x14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_Icon_GIF_28x14.imageset/club_Icon_GIF_28x14@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_Icon_GIF_28x14_UIMode_Night.imageset/club_Icon_GIF_28x14_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_Icon_GIF_28x14_UIMode_Night.imageset/club_Icon_GIF_28x14_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_SelectImageButton.imageset/club_SelectImageButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_SelectImageButton.imageset/club_SelectImageButton@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_SelectSubjectButton.imageset/club_SelectSubjectButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/club_SelectSubjectButton.imageset/club_SelectSubjectButton@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/columnBoxLift_14x11_UIMode_Day.imageset/columnBoxLift_14x11_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/columnBoxLift_14x11_UIMode_Day.imageset/columnBoxLift_14x11_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/columnBoxLift_14x11_UIMode_Night.imageset/columnBoxLift_14x11_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/columnBoxLift_14x11_UIMode_Night.imageset/columnBoxLift_14x11_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/columnBoxRight_14x11_UIMode_Day.imageset/columnBoxRight_14x11_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/columnBoxRight_14x11_UIMode_Day.imageset/columnBoxRight_14x11_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/columnBoxRight_14x11_UIMode_Night.imageset/columnBoxRight_14x11_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/columnBoxRight_14x11_UIMode_Night.imageset/columnBoxRight_14x11_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/comments_PraiseButtonSelected_UIMode_Day.imageset/comments_PraiseButtonSelected_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/comments_PraiseButtonSelected_UIMode_Day.imageset/comments_PraiseButtonSelected_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/comments_PraiseButtonSelected_UIMode_Night.imageset/comments_PraiseButtonSelected_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/comments_PraiseButtonSelected_UIMode_Night.imageset/comments_PraiseButtonSelected_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/comments_PraiseButton_UIMode_Day.imageset/comments_PraiseButton_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/comments_PraiseButton_UIMode_Day.imageset/comments_PraiseButton_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/comments_PraiseButton_UIMode_Night.imageset/comments_PraiseButton_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/comments_PraiseButton_UIMode_Night.imageset/comments_PraiseButton_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/comments_ReplyButton.imageset/comments_ReplyButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/comments_ReplyButton.imageset/comments_ReplyButton@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_Club.imageset/common_Button_Club@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_Club.imageset/common_Button_Club@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_Club_Selected.imageset/common_Button_Club_Selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_Club_Selected.imageset/common_Button_Club_Selected@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_Club_Selected_UIMode_Night.imageset/common_Button_Club_Selected_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_Club_Selected_UIMode_Night.imageset/common_Button_Club_Selected_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_Club_UIMode_Night.imageset/common_Button_Club_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_Club_UIMode_Night.imageset/common_Button_Club_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_DingYue_Selected_UIMode_Day.imageset/common_Button_DingYue_Selected_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_DingYue_Selected_UIMode_Day.imageset/common_Button_DingYue_Selected_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_DingYue_UIMode_Day.imageset/common_Button_DingYue_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_DingYue_UIMode_Day.imageset/common_Button_DingYue_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_DingYue_UIMode_Night.imageset/common_Button_DingYue_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_DingYue_UIMode_Night.imageset/common_Button_DingYue_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_GongLue_Selected_UIMode_Day.imageset/common_Button_GongLue_Selected_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_GongLue_Selected_UIMode_Day.imageset/common_Button_GongLue_Selected_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_GongLue_UIMode_Day.imageset/common_Button_GongLue_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_GongLue_UIMode_Day.imageset/common_Button_GongLue_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_GongLue_UIMode_Night.imageset/common_Button_GongLue_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_GongLue_UIMode_Night.imageset/common_Button_GongLue_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_PrimaryActivity_UIMode_Day.imageset/common_Button_PrimaryActivity_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_PrimaryActivity_UIMode_Day.imageset/common_Button_PrimaryActivity_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_PrimaryActivity_UIMode_Night.imageset/common_Button_PrimaryActivity_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_PrimaryActivity_UIMode_Night.imageset/common_Button_PrimaryActivity_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_ShouYou_UIMode_Day.imageset/common_Button_ShouYou_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_ShouYou_UIMode_Day.imageset/common_Button_ShouYou_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_ShouYou_UIMode_Night.imageset/common_Button_ShouYou_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_ShouYou_UIMode_Night.imageset/common_Button_ShouYou_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_WoDe_Selected_UIMode_Day.imageset/common_Button_WoDe_Selected_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_WoDe_Selected_UIMode_Day.imageset/common_Button_WoDe_Selected_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_WoDe_Selected_UIMode_Night.imageset/common_Button_WoDe_Selected_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_WoDe_Selected_UIMode_Night.imageset/common_Button_WoDe_Selected_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_WoDe_UIMode_Day.imageset/common_Button_WoDe_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_WoDe_UIMode_Day.imageset/common_Button_WoDe_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_WoDe_UIMode_Night.imageset/common_Button_WoDe_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_WoDe_UIMode_Night.imageset/common_Button_WoDe_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_XinWen_Selected_UIMode_Day.imageset/common_Button_XinWen_Selected_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_XinWen_Selected_UIMode_Day.imageset/common_Button_XinWen_Selected_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_XinWen_UIMode_Day.imageset/common_Button_XinWen_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_XinWen_UIMode_Day.imageset/common_Button_XinWen_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_XinWen_UIMode_Night.imageset/common_Button_XinWen_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_XinWen_UIMode_Night.imageset/common_Button_XinWen_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_YouXiKu_UIMode_Day.imageset/common_Button_YouXiKu_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_YouXiKu_UIMode_Day.imageset/common_Button_YouXiKu_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_YouXiKu_UIMode_Night.imageset/common_Button_YouXiKu_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Button_YouXiKu_UIMode_Night.imageset/common_Button_YouXiKu_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_ Browser_50x50.imageset/common_Icon_ Browser_50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_ Browser_50x50.imageset/common_Icon_ Browser_50x50@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Account_16x16_UIMode_Day.imageset/common_Icon_Account_16x16_UIMode_Day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Account_16x16_UIMode_Day.imageset/common_Icon_Account_16x16_UIMode_Day.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Account_16x16_UIMode_Day.imageset/common_Icon_Account_16x16_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Account_16x16_UIMode_Day.imageset/common_Icon_Account_16x16_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Account_16x16_UIMode_Night.imageset/common_Icon_Account_16x16_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Account_16x16_UIMode_Night.imageset/common_Icon_Account_16x16_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Add_10x10.imageset/common_Icon_Add_10x10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Add_10x10.imageset/common_Icon_Add_10x10@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Add_10x10_UIMode_Night.imageset/common_Icon_Add_10x10_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Add_10x10_UIMode_Night.imageset/common_Icon_Add_10x10_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Add_20x20.imageset/common_Icon_Add_20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Add_20x20.imageset/common_Icon_Add_20x20@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Add_20x20_UIMode_Night.imageset/common_Icon_Add_20x20_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Add_20x20_UIMode_Night.imageset/common_Icon_Add_20x20_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Anonymous_22x22_UIMode_Day.imageset/common_Icon_Anonymous_22x22_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Anonymous_22x22_UIMode_Day.imageset/common_Icon_Anonymous_22x22_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Anonymous_22x22_UIMode_Night.imageset/common_Icon_Anonymous_22x22_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Anonymous_22x22_UIMode_Night.imageset/common_Icon_Anonymous_22x22_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Anonymous_Selected_22x22.imageset/common_Icon_Anonymous_Selected_22x22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Anonymous_Selected_22x22.imageset/common_Icon_Anonymous_Selected_22x22@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Back_20x20_Black.imageset/common_Icon_Back_20x20_Black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Back_20x20_Black.imageset/common_Icon_Back_20x20_Black@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Back_20x20_White.imageset/common_Icon_Back_20x20_White@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Back_20x20_White.imageset/common_Icon_Back_20x20_White@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Back_26x26_UIMode_Day.imageset/common_Icon_Back_26x26_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Back_26x26_UIMode_Day.imageset/common_Icon_Back_26x26_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Back_26x26_UIMode_Night.imageset/common_Icon_Back_26x26_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Back_26x26_UIMode_Night.imageset/common_Icon_Back_26x26_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Back_9x16.imageset/common_Icon_Back_9x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Back_9x16.imageset/common_Icon_Back_9x16@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Blank24x24.imageset/common_Icon_Blank24x24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Blank24x24.imageset/common_Icon_Blank24x24@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Calendar_20x20_UIMode_Day.imageset/common_Icon_Calendar_20x20_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Calendar_20x20_UIMode_Day.imageset/common_Icon_Calendar_20x20_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Calendar_20x20_UIMode_Night.imageset/common_Icon_Calendar_20x20_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Calendar_20x20_UIMode_Night.imageset/common_Icon_Calendar_20x20_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Catalogs_16x16_UIMode_Day.imageset/common_Icon_Catalogs_16x16_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Catalogs_16x16_UIMode_Day.imageset/common_Icon_Catalogs_16x16_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Catalogs_16x16_UIMode_Night.imageset/common_Icon_Catalogs_16x16_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Catalogs_16x16_UIMode_Night.imageset/common_Icon_Catalogs_16x16_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Catalogs_22x22.imageset/common_Icon_Catalogs_22x22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Catalogs_22x22.imageset/common_Icon_Catalogs_22x22@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_CheckBox_15x15.imageset/common_Icon_CheckBox_15x15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_CheckBox_15x15.imageset/common_Icon_CheckBox_15x15@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_CheckBox_15x15_Selected.imageset/common_Icon_CheckBox_15x15_Selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_CheckBox_15x15_Selected.imageset/common_Icon_CheckBox_15x15_Selected@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_ClearCache_38x38_UIMode_Day.imageset/common_Icon_ClearCache_38x38_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_ClearCache_38x38_UIMode_Day.imageset/common_Icon_ClearCache_38x38_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Clear_15x15_UIMode_Day.imageset/common_Icon_Clear_15x15_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Clear_15x15_UIMode_Day.imageset/common_Icon_Clear_15x15_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Clear_15x15_UIMode_Night.imageset/common_Icon_Clear_15x15_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Clear_15x15_UIMode_Night.imageset/common_Icon_Clear_15x15_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Clear_20x20_White_UIMode_Day.imageset/common_Icon_Clear_20x20_White_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Clear_20x20_White_UIMode_Day.imageset/common_Icon_Clear_20x20_White_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Clock_14x14.imageset/common_Icon_Clock_14x14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Clock_14x14.imageset/common_Icon_Clock_14x14@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Clock_14x14_UIMode_Night.imageset/common_Icon_Clock_14x14_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Clock_14x14_UIMode_Night.imageset/common_Icon_Clock_14x14_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Close_20x20_UIMode_Day.imageset/common_Icon_Close_20x20_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Close_20x20_UIMode_Day.imageset/common_Icon_Close_20x20_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Close_20x20_UIMode_Night.imageset/common_Icon_Close_20x20_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Close_20x20_UIMode_Night.imageset/common_Icon_Close_20x20_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Close_40x40_UIMode_Day.imageset/common_Icon_Close_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Close_40x40_UIMode_Day.imageset/common_Icon_Close_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_15x15.imageset/common_Icon_Comment_15x15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_15x15.imageset/common_Icon_Comment_15x15@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_15x15_Selected.imageset/common_Icon_Comment_15x15_Selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_15x15_Selected.imageset/common_Icon_Comment_15x15_Selected@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_15x15_UIMode_Night.imageset/common_Icon_Comment_15x15_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_15x15_UIMode_Night.imageset/common_Icon_Comment_15x15_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_16x16.imageset/common_Icon_Comment_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_16x16.imageset/common_Icon_Comment_16x16@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_16x16_White.imageset/common_Icon_Comment_16x16_White@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_16x16_White.imageset/common_Icon_Comment_16x16_White@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_16x19.imageset/common_Icon_Comment_16x19@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_16x19.imageset/common_Icon_Comment_16x19@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_16x19_UIMode_Night.imageset/common_Icon_Comment_16x19_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_16x19_UIMode_Night.imageset/common_Icon_Comment_16x19_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_26x26.imageset/common_Icon_Comment_26x26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comment_26x26.imageset/common_Icon_Comment_26x26@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comments_12x12.imageset/common_Icon_Comments_12x12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comments_12x12.imageset/common_Icon_Comments_12x12@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comments_12x12_UIMode_Night.imageset/common_Icon_Comments_12x12_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comments_12x12_UIMode_Night.imageset/common_Icon_Comments_12x12_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comments_12x12_White.imageset/common_Icon_Comments_12x12_White@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comments_12x12_White.imageset/common_Icon_Comments_12x12_White@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comments_22x22_UIMode_Day.imageset/common_Icon_Comments_22x22_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comments_22x22_UIMode_Day.imageset/common_Icon_Comments_22x22_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comments_22x22_UIMode_Night.imageset/common_Icon_Comments_22x22_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Comments_22x22_UIMode_Night.imageset/common_Icon_Comments_22x22_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Complete_40x40_UIMode_Day.imageset/common_Icon_Complete_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Complete_40x40_UIMode_Day.imageset/common_Icon_Complete_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Complete_40x40_UIMode_Night.imageset/common_Icon_Complete_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Complete_40x40_UIMode_Night.imageset/common_Icon_Complete_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_CopyLink_40x40_UIMode_Day.imageset/common_Icon_CopyLink_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_CopyLink_40x40_UIMode_Day.imageset/common_Icon_CopyLink_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_CopyLink_40x40_UIMode_Night.imageset/common_Icon_CopyLink_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_CopyLink_40x40_UIMode_Night.imageset/common_Icon_CopyLink_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Copy_15x15.imageset/common_Icon_Copy_15x15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Copy_15x15.imageset/common_Icon_Copy_15x15@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Copy_24x24_UIMode_Day.imageset/common_Icon_Copy_24x24_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Copy_24x24_UIMode_Day.imageset/common_Icon_Copy_24x24_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Copy_24x24_UIMode_Night.imageset/common_Icon_Copy_24x24_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Copy_24x24_UIMode_Night.imageset/common_Icon_Copy_24x24_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_CreateScore_Normal.imageset/common_Icon_CreateScore_Normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_CreateScore_Normal.imageset/common_Icon_CreateScore_Normal@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_CreateScore_Selected.imageset/common_Icon_CreateScore_Selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_CreateScore_Selected.imageset/common_Icon_CreateScore_Selected@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_DownArrow_10x6.imageset/common_Icon_DownArrow_10x6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_DownArrow_10x6.imageset/common_Icon_DownArrow_10x6@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_DownArrow_10x6_5.imageset/common_Icon_DownArrow_10x6_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_DownArrow_10x6_5.imageset/common_Icon_DownArrow_10x6_5@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_DownArrow_10x6_Blue.imageset/common_Icon_DownArrow_10x6_Blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_DownArrow_10x6_Blue.imageset/common_Icon_DownArrow_10x6_Blue@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Downlaod_26x26.imageset/common_Icon_Downlaod_26x26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Downlaod_26x26.imageset/common_Icon_Downlaod_26x26@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Download_40x40_UIMode_Day.imageset/common_Icon_Download_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Download_40x40_UIMode_Day.imageset/common_Icon_Download_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Download_40x40_UIMode_Night.imageset/common_Icon_Download_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Download_40x40_UIMode_Night.imageset/common_Icon_Download_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Edit_16x14_UIMode_Day.imageset/common_Icon_Edit_16x14_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Edit_16x14_UIMode_Day.imageset/common_Icon_Edit_16x14_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Error_10x10_UIMode_Day.imageset/common_Icon_Error_10x10_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Error_10x10_UIMode_Day.imageset/common_Icon_Error_10x10_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Error_10x10_UIMode_Night.imageset/common_Icon_Error_10x10_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Error_10x10_UIMode_Night.imageset/common_Icon_Error_10x10_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Failed_40x40_UIMode_Day.imageset/common_Icon_Failed_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Failed_40x40_UIMode_Day.imageset/common_Icon_Failed_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Failed_40x40_UIMode_Night.imageset/common_Icon_Failed_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Failed_40x40_UIMode_Night.imageset/common_Icon_Failed_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favorite_22x22_UIMode_Day.imageset/common_Icon_Favorite_22x22_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favorite_22x22_UIMode_Day.imageset/common_Icon_Favorite_22x22_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favorite_22x22_UIMode_Night.imageset/common_Icon_Favorite_22x22_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favorite_22x22_UIMode_Night.imageset/common_Icon_Favorite_22x22_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favorite_26x26_UIMode_Day.imageset/common_Icon_Favorite_26x26_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favorite_26x26_UIMode_Day.imageset/common_Icon_Favorite_26x26_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favorite_26x26_UIMode_Night.imageset/common_Icon_Favorite_26x26_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favorite_26x26_UIMode_Night.imageset/common_Icon_Favorite_26x26_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favorite_28x28.imageset/common_Icon_Favorite_28x28@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favorite_28x28.imageset/common_Icon_Favorite_28x28@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favorite_40x40_UIMode_Day.imageset/common_Icon_Favorite_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favorite_40x40_UIMode_Day.imageset/common_Icon_Favorite_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favorite_40x40_UIMode_Night.imageset/common_Icon_Favorite_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favorite_40x40_UIMode_Night.imageset/common_Icon_Favorite_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favority_38x38_UIMode_Day.imageset/common_Icon_Favority_38x38_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favority_38x38_UIMode_Day.imageset/common_Icon_Favority_38x38_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favority_38x38_UIMode_Night.imageset/common_Icon_Favority_38x38_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Favority_38x38_UIMode_Night.imageset/common_Icon_Favority_38x38_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_FeedBack_38x38_UIMode_Day.imageset/common_Icon_FeedBack_38x38_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_FeedBack_38x38_UIMode_Day.imageset/common_Icon_FeedBack_38x38_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_FeedBack_38x38_UIMode_Night.imageset/common_Icon_FeedBack_38x38_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_FeedBack_38x38_UIMode_Night.imageset/common_Icon_FeedBack_38x38_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Fire_12x12.imageset/common_Icon_Fire_12x12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Fire_12x12.imageset/common_Icon_Fire_12x12@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Fire_12x12_UIMode_Night.imageset/common_Icon_Fire_12x12_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Fire_12x12_UIMode_Night.imageset/common_Icon_Fire_12x12_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Font_26x26_Black_UIMode_Day.imageset/common_Icon_Font_26x26_Black_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Font_26x26_Black_UIMode_Day.imageset/common_Icon_Font_26x26_Black_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Font_26x26_Gray_UIMode_Day.imageset/common_Icon_Font_26x26_Gray_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Font_26x26_Gray_UIMode_Day.imageset/common_Icon_Font_26x26_Gray_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Font_26x26_Gray_UIMode_Night.imageset/common_Icon_Font_26x26_Gray_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Font_26x26_Gray_UIMode_Night.imageset/common_Icon_Font_26x26_Gray_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Forward_20x20.imageset/common_Icon_Forward_20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Forward_20x20.imageset/common_Icon_Forward_20x20@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Forward_26x26.imageset/common_Icon_Forward_26x26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Forward_26x26.imageset/common_Icon_Forward_26x26@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Forward_26x26_UIMode_Day.imageset/common_Icon_Forward_26x26_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Forward_26x26_UIMode_Day.imageset/common_Icon_Forward_26x26_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Forward_26x26_UIMode_Night.imageset/common_Icon_Forward_26x26_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Forward_26x26_UIMode_Night.imageset/common_Icon_Forward_26x26_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Forward_9x16.imageset/common_Icon_Forward_9x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Forward_9x16.imageset/common_Icon_Forward_9x16@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GSAppQRCode_50x50.imageset/common_Icon_GSAppQRCode_50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GSAppQRCode_50x50.imageset/common_Icon_GSAppQRCode_50x50@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScoreBadge_16x16.imageset/common_Icon_GameScoreBadge_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScoreBadge_16x16.imageset/common_Icon_GameScoreBadge_16x16@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScoreTotalScoreBg_16x18.imageset/common_Icon_GameScoreTotalScoreBg_16x18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScoreTotalScoreBg_16x18.imageset/common_Icon_GameScoreTotalScoreBg_16x18@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScore_13x11.imageset/common_Icon_GameScore_13x11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScore_13x11.imageset/common_Icon_GameScore_13x11@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScore_13x11_UIMode_Night.imageset/common_Icon_GameScore_13x11_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScore_13x11_UIMode_Night.imageset/common_Icon_GameScore_13x11_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScore_14x14_Green.imageset/common_Icon_GameScore_14x14_Green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScore_14x14_Green.imageset/common_Icon_GameScore_14x14_Green@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScore_16x14.imageset/common_Icon_GameScore_16x14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScore_16x14.imageset/common_Icon_GameScore_16x14@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScore_16x14_UIMode_Night.imageset/common_Icon_GameScore_16x14_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScore_16x14_UIMode_Night.imageset/common_Icon_GameScore_16x14_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScore_72x13_5.imageset/common_Icon_GameScore_72x13_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScore_72x13_5.imageset/common_Icon_GameScore_72x13_5@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScore_72x13_5_Selected.imageset/common_Icon_GameScore_72x13_5_Selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GameScore_72x13_5_Selected.imageset/common_Icon_GameScore_72x13_5_Selected@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Game_26x26.imageset/common_Icon_Game_26x26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Game_26x26.imageset/common_Icon_Game_26x26@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GamerSkyLogo_101x33.imageset/common_Icon_GamerSkyLogo_101x33@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_GamerSkyLogo_101x33.imageset/common_Icon_GamerSkyLogo_101x33@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_HDSelected_40x40_UIMode_Day.imageset/common_Icon_HDSelected_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_HDSelected_40x40_UIMode_Day.imageset/common_Icon_HDSelected_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_HD_40x40_UIMode_Day.imageset/common_Icon_HD_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_HD_40x40_UIMode_Day.imageset/common_Icon_HD_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_HD_40x40_UIMode_Night.imageset/common_Icon_HD_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_HD_40x40_UIMode_Night.imageset/common_Icon_HD_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index1_16x16_UIMode_Day.imageset/common_Icon_Index1_16x16_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index1_16x16_UIMode_Day.imageset/common_Icon_Index1_16x16_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index1_16x16_UIMode_Night.imageset/common_Icon_Index1_16x16_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index1_16x16_UIMode_Night.imageset/common_Icon_Index1_16x16_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index1_16x18.imageset/common_Icon_Index1_16x18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index1_16x18.imageset/common_Icon_Index1_16x18@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index2_16x16_UIMode_Day.imageset/common_Icon_Index2_16x16_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index2_16x16_UIMode_Day.imageset/common_Icon_Index2_16x16_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index2_16x16_UIMode_Night.imageset/common_Icon_Index2_16x16_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index2_16x16_UIMode_Night.imageset/common_Icon_Index2_16x16_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index2_16x18.imageset/common_Icon_Index2_16x18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index2_16x18.imageset/common_Icon_Index2_16x18@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index3_16x16_UIMode_Day.imageset/common_Icon_Index3_16x16_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index3_16x16_UIMode_Day.imageset/common_Icon_Index3_16x16_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index3_16x16_UIMode_Night.imageset/common_Icon_Index3_16x16_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index3_16x16_UIMode_Night.imageset/common_Icon_Index3_16x16_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index3_16x18.imageset/common_Icon_Index3_16x18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index3_16x18.imageset/common_Icon_Index3_16x18@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index_14x14_UIMode_Day.imageset/common_Icon_Index_14x14_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index_14x14_UIMode_Day.imageset/common_Icon_Index_14x14_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index_14x14_UIMode_Night.imageset/common_Icon_Index_14x14_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Index_14x14_UIMode_Night.imageset/common_Icon_Index_14x14_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Link_12x13.imageset/common_Icon_Link_12x13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Link_12x13.imageset/common_Icon_Link_12x13@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Link_12x13_UIMode_Night.imageset/common_Icon_Link_12x13_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Link_12x13_UIMode_Night.imageset/common_Icon_Link_12x13_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Login_40x40_UIMode_Day.imageset/common_Icon_Login_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Login_40x40_UIMode_Day.imageset/common_Icon_Login_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Login_40x40_UIMode_Night.imageset/common_Icon_Login_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Login_40x40_UIMode_Night.imageset/common_Icon_Login_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Message_38x38_UIMode_Day.imageset/common_Icon_Message_38x38_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Message_38x38_UIMode_Day.imageset/common_Icon_Message_38x38_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Message_38x38_UIMode_Night.imageset/common_Icon_Message_38x38_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Message_38x38_UIMode_Night.imageset/common_Icon_Message_38x38_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_MoreRed_13x13_UIMode_Day.imageset/common_Icon_MoreRed_13x13_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_MoreRed_13x13_UIMode_Day.imageset/common_Icon_MoreRed_13x13_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_MoreRed_13x13_UIMode_Night.imageset/common_Icon_MoreRed_13x13_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_MoreRed_13x13_UIMode_Night.imageset/common_Icon_MoreRed_13x13_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_More_20x20_UIMode_Day.imageset/common_Icon_More_20x20_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_More_20x20_UIMode_Day.imageset/common_Icon_More_20x20_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_More_20x20_UIMode_Night.imageset/common_Icon_More_20x20_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_More_20x20_UIMode_Night.imageset/common_Icon_More_20x20_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_More_22x22_UIMode_Day.imageset/common_Icon_More_22x22_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_More_22x22_UIMode_Day.imageset/common_Icon_More_22x22_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_More_22x22_UIMode_Night.imageset/common_Icon_More_22x22_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_More_22x22_UIMode_Night.imageset/common_Icon_More_22x22_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_More_26x26_UIMode_Day.imageset/common_Icon_More_26x26_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_More_26x26_UIMode_Day.imageset/common_Icon_More_26x26_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_More_26x26_UIMode_Night.imageset/common_Icon_More_26x26_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_More_26x26_UIMode_Night.imageset/common_Icon_More_26x26_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_MyCommentReplies_25x25_UIMode_Night@2x.dataset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "data" : [ 7 | { 8 | "idiom" : "universal", 9 | "filename" : "common_Icon_MyCommentReplies_25x25_UIMode_Night@2x.psd" 10 | } 11 | ] 12 | } -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_NewComment_26x26_UIMode_Day.imageset/common_Icon_NewComment_26x26_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_NewComment_26x26_UIMode_Day.imageset/common_Icon_NewComment_26x26_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_NewComment_40x40_UIMode_Day.imageset/common_Icon_NewComment_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_NewComment_40x40_UIMode_Day.imageset/common_Icon_NewComment_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_News_26x26.imageset/common_Icon_News_26x26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_News_26x26.imageset/common_Icon_News_26x26@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_NightMode_38x38_UIMode_Day.imageset/common_Icon_NightMode_38x38_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_NightMode_38x38_UIMode_Day.imageset/common_Icon_NightMode_38x38_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_NightMode_38x38_UIMode_Night.imageset/common_Icon_NightMode_38x38_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_NightMode_38x38_UIMode_Night.imageset/common_Icon_NightMode_38x38_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Notify_26x26.imageset/common_Icon_Notify_26x26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Notify_26x26.imageset/common_Icon_Notify_26x26@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Open_26x26_UIMode_Day.imageset/common_Icon_Open_26x26_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Open_26x26_UIMode_Day.imageset/common_Icon_Open_26x26_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Open_26x26_UIMode_Night.imageset/common_Icon_Open_26x26_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Open_26x26_UIMode_Night.imageset/common_Icon_Open_26x26_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Order_22x22_UIMode_Day.imageset/common_Icon_Order_22x22_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Order_22x22_UIMode_Day.imageset/common_Icon_Order_22x22_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Order_22x22_UIMode_Night.imageset/common_Icon_Order_22x22_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Order_22x22_UIMode_Night.imageset/common_Icon_Order_22x22_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Password_16x16_UIMode_Day.imageset/common_Icon_Password_16x16_UIMode_Day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Password_16x16_UIMode_Day.imageset/common_Icon_Password_16x16_UIMode_Day.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PengYouQuan_24x24.imageset/common_Icon_PengYouQuan_24x24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PengYouQuan_24x24.imageset/common_Icon_PengYouQuan_24x24@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PengYouQuan_50x50.imageset/common_Icon_PengYouQuan_50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PengYouQuan_50x50.imageset/common_Icon_PengYouQuan_50x50@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Phone_13x18_UIMode_Day.imageset/common_Icon_Phone_13x18_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Phone_13x18_UIMode_Day.imageset/common_Icon_Phone_13x18_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Platform_PC_56x56.imageset/common_Icon_Platform_PC_56x56@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Platform_PC_56x56.imageset/common_Icon_Platform_PC_56x56@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Platform_PS3_56x56.imageset/common_Icon_Platform_PS3_56x56@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Platform_PS3_56x56.imageset/common_Icon_Platform_PS3_56x56@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Platform_PS4_56x56.imageset/common_Icon_Platform_PS4_56x56@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Platform_PS4_56x56.imageset/common_Icon_Platform_PS4_56x56@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Platform_XBox360_56x56.imageset/common_Icon_Platform_XBox360_56x56@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Platform_XBox360_56x56.imageset/common_Icon_Platform_XBox360_56x56@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Platform_XBoxOne_56x56.imageset/common_Icon_Platform_XBoxOne_56x56@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Platform_XBoxOne_56x56.imageset/common_Icon_Platform_XBoxOne_56x56@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Play_12x12_UIMode_Day.imageset/common_Icon_Play_12x12_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Play_12x12_UIMode_Day.imageset/common_Icon_Play_12x12_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Play_58x58_UIMode_Day.imageset/common_Icon_Play_58x58_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Play_58x58_UIMode_Day.imageset/common_Icon_Play_58x58_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Play_64x64_UIMode_Day.imageset/common_Icon_Play_64x64_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Play_64x64_UIMode_Day.imageset/common_Icon_Play_64x64_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Play_64x64_UIMode_Night.imageset/common_Icon_Play_64x64_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Play_64x64_UIMode_Night.imageset/common_Icon_Play_64x64_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Play_66x66_UIMode_Day.imageset/common_Icon_Play_66x66_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Play_66x66_UIMode_Day.imageset/common_Icon_Play_66x66_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Play_66x66_UIMode_Night.imageset/common_Icon_Play_66x66_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Play_66x66_UIMode_Night.imageset/common_Icon_Play_66x66_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PraiseButton_16x19.imageset/common_Icon_PraiseButton_16x19@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PraiseButton_16x19.imageset/common_Icon_PraiseButton_16x19@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PraiseButton_16x19_Selected.imageset/common_Icon_PraiseButton_16x19_Selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PraiseButton_16x19_Selected.imageset/common_Icon_PraiseButton_16x19_Selected@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PraiseTread_14x14.imageset/common_Icon_PraiseTread_14x14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PraiseTread_14x14.imageset/common_Icon_PraiseTread_14x14@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Praise_15x15.imageset/common_Icon_Praise_15x15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Praise_15x15.imageset/common_Icon_Praise_15x15@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Praise_15x15_Green_Selected.imageset/common_Icon_Praise_15x15_Green_Selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Praise_15x15_Green_Selected.imageset/common_Icon_Praise_15x15_Green_Selected@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Praise_15x15_Selected.imageset/common_Icon_Praise_15x15_Selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Praise_15x15_Selected.imageset/common_Icon_Praise_15x15_Selected@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Praise_15x15_UIMode_Night.imageset/common_Icon_Praise_15x15_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Praise_15x15_UIMode_Night.imageset/common_Icon_Praise_15x15_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Praise_22x22_UIMode_Day.imageset/common_Icon_Praise_22x22_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Praise_22x22_UIMode_Day.imageset/common_Icon_Praise_22x22_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Praise_37x37_UIMode_Day.imageset/common_Icon_Praise_37x37_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Praise_37x37_UIMode_Day.imageset/common_Icon_Praise_37x37_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PromotionAtTopRight_50x50.imageset/common_Icon_PromotionAtTopRight_50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PromotionAtTopRight_50x50.imageset/common_Icon_PromotionAtTopRight_50x50@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PromotionBadge_20x20.imageset/common_Icon_PromotionBadge_20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PromotionBadge_20x20.imageset/common_Icon_PromotionBadge_20x20@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PromotionBadge_30x30.imageset/common_Icon_PromotionBadge_30x30@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PromotionBadge_30x30.imageset/common_Icon_PromotionBadge_30x30@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PromotionBadge_45x45.imageset/common_Icon_PromotionBadge_45x45@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_PromotionBadge_45x45.imageset/common_Icon_PromotionBadge_45x45@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQZone_40x40_UIMode_Day.imageset/common_Icon_QQZone_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQZone_40x40_UIMode_Day.imageset/common_Icon_QQZone_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQZone_40x40_UIMode_Night.imageset/common_Icon_QQZone_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQZone_40x40_UIMode_Night.imageset/common_Icon_QQZone_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQZone_50x50.imageset/common_Icon_QQZone_50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQZone_50x50.imageset/common_Icon_QQZone_50x50@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQ_24x24.imageset/common_Icon_QQ_24x24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQ_24x24.imageset/common_Icon_QQ_24x24@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQ_40x40_UIMode_Day.imageset/common_Icon_QQ_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQ_40x40_UIMode_Day.imageset/common_Icon_QQ_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQ_40x40_UIMode_Night.imageset/common_Icon_QQ_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQ_40x40_UIMode_Night.imageset/common_Icon_QQ_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQ_44x44.imageset/common_Icon_QQ_44x44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQ_44x44.imageset/common_Icon_QQ_44x44@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQ_50x50.imageset/common_Icon_QQ_50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQ_50x50.imageset/common_Icon_QQ_50x50@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQ_60x60_UIMode_Day.imageset/common_Icon_QQ_60x60_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQ_60x60_UIMode_Day.imageset/common_Icon_QQ_60x60_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQ_60x60_UIMode_Night.imageset/common_Icon_QQ_60x60_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QQ_60x60_UIMode_Night.imageset/common_Icon_QQ_60x60_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QZone_24x24.imageset/common_Icon_QZone_24x24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_QZone_24x24.imageset/common_Icon_QZone_24x24@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Recommend_10x10.imageset/common_Icon_Recommend_10x10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Recommend_10x10.imageset/common_Icon_Recommend_10x10@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Recommend_10x10_UIMode_Night.imageset/common_Icon_Recommend_10x10_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Recommend_10x10_UIMode_Night.imageset/common_Icon_Recommend_10x10_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Refresh_20x20_UIMode_Day.imageset/common_Icon_Refresh_20x20_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Refresh_20x20_UIMode_Day.imageset/common_Icon_Refresh_20x20_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Refresh_20x20_UIMode_Night.imageset/common_Icon_Refresh_20x20_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Refresh_20x20_UIMode_Night.imageset/common_Icon_Refresh_20x20_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Refresh_26x26_UIMode_Day.imageset/common_Icon_Refresh_26x26_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Refresh_26x26_UIMode_Day.imageset/common_Icon_Refresh_26x26_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Refresh_26x26_UIMode_Night.imageset/common_Icon_Refresh_26x26_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Refresh_26x26_UIMode_Night.imageset/common_Icon_Refresh_26x26_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Refresh_40x40_UIMode_Day.imageset/common_Icon_Refresh_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Refresh_40x40_UIMode_Day.imageset/common_Icon_Refresh_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Refresh_40x40_UIMode_Night.imageset/common_Icon_Refresh_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Refresh_40x40_UIMode_Night.imageset/common_Icon_Refresh_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Remove_12x12.imageset/common_Icon_Remove_12x12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Remove_12x12.imageset/common_Icon_Remove_12x12@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Remove_12x12_UIMode_Night.imageset/common_Icon_Remove_12x12_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Remove_12x12_UIMode_Night.imageset/common_Icon_Remove_12x12_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Remove_15x15.imageset/common_Icon_Remove_15x15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Remove_15x15.imageset/common_Icon_Remove_15x15@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Remove_15x15_UIMode_Night.imageset/common_Icon_Remove_15x15_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Remove_15x15_UIMode_Night.imageset/common_Icon_Remove_15x15_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Ribbon_94x22.imageset/common_Icon_Ribbon_94x22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Ribbon_94x22.imageset/common_Icon_Ribbon_94x22@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Ribbon_94x22_Highlight.imageset/common_Icon_Ribbon_94x22_Highlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Ribbon_94x22_Highlight.imageset/common_Icon_Ribbon_94x22_Highlight@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Ribbon_94x22_UIMode_Night.imageset/common_Icon_Ribbon_94x22_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Ribbon_94x22_UIMode_Night.imageset/common_Icon_Ribbon_94x22_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_SavePhoto_50x50.imageset/common_Icon_SavePhoto_50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_SavePhoto_50x50.imageset/common_Icon_SavePhoto_50x50@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Search_16x16.imageset/common_Icon_Search_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Search_16x16.imageset/common_Icon_Search_16x16@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Search_16x16_UIMode_Night.imageset/common_Icon_Search_16x16_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Search_16x16_UIMode_Night.imageset/common_Icon_Search_16x16_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Search_22x22.imageset/common_Icon_Search_22x22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Search_22x22.imageset/common_Icon_Search_22x22@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Search_22x22_UIMode_Night.imageset/common_Icon_Search_22x22_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Search_22x22_UIMode_Night.imageset/common_Icon_Search_22x22_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Search_22x22_White.imageset/common_Icon_Search_22x22_White@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Search_22x22_White.imageset/common_Icon_Search_22x22_White@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Search_38x38_UIMode_Day.imageset/common_Icon_Search_38x38_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Search_38x38_UIMode_Day.imageset/common_Icon_Search_38x38_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Search_38x38_UIMode_Night.imageset/common_Icon_Search_38x38_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Search_38x38_UIMode_Night.imageset/common_Icon_Search_38x38_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Setting_38x38_UIMode_Day.imageset/common_Icon_Setting_38x38_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Setting_38x38_UIMode_Day.imageset/common_Icon_Setting_38x38_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Setting_38x38_UIMode_Night.imageset/common_Icon_Setting_38x38_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Setting_38x38_UIMode_Night.imageset/common_Icon_Setting_38x38_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_17x13.imageset/common_Icon_Share_17x13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_17x13.imageset/common_Icon_Share_17x13@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_17x13_UIMode_Night.imageset/common_Icon_Share_17x13_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_17x13_UIMode_Night.imageset/common_Icon_Share_17x13_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_22x22_UIMode_Day.imageset/common_Icon_Share_22x22_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_22x22_UIMode_Day.imageset/common_Icon_Share_22x22_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_22x22_UIMode_Night.imageset/common_Icon_Share_22x22_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_22x22_UIMode_Night.imageset/common_Icon_Share_22x22_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_22x22_White_UIMode_Day.imageset/common_Icon_Share_22x22_White_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_22x22_White_UIMode_Day.imageset/common_Icon_Share_22x22_White_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_26x26_UIMode_Day.imageset/common_Icon_Share_26x26_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_26x26_UIMode_Day.imageset/common_Icon_Share_26x26_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_26x26_UIMode_Night.imageset/common_Icon_Share_26x26_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_26x26_UIMode_Night.imageset/common_Icon_Share_26x26_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_26x26_White_UIMode_Day.imageset/common_Icon_Share_26x26_White_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_26x26_White_UIMode_Day.imageset/common_Icon_Share_26x26_White_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_40x40_UIMode_Day.imageset/common_Icon_Share_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_40x40_UIMode_Day.imageset/common_Icon_Share_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_40x40_UIMode_Night.imageset/common_Icon_Share_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Share_40x40_UIMode_Night.imageset/common_Icon_Share_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_SoundFlag_30x23_5.imageset/common_Icon_SoundFlag_30x23_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_SoundFlag_30x23_5.imageset/common_Icon_SoundFlag_30x23_5@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_SoundFlag_30x23_5_Selected.imageset/common_Icon_SoundFlag_30x23_5_Selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_SoundFlag_30x23_5_Selected.imageset/common_Icon_SoundFlag_30x23_5_Selected@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_12x12.imageset/common_Icon_Star_12x12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_12x12.imageset/common_Icon_Star_12x12@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_12x12_Actived.imageset/common_Icon_Star_12x12_Actived@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_12x12_Actived.imageset/common_Icon_Star_12x12_Actived@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_12x12_UIMode_Night.imageset/common_Icon_Star_12x12_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_12x12_UIMode_Night.imageset/common_Icon_Star_12x12_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_15x14.imageset/common_Icon_Star_15x14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_15x14.imageset/common_Icon_Star_15x14@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_15x14_Actived.imageset/common_Icon_Star_15x14_Actived@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_15x14_Actived.imageset/common_Icon_Star_15x14_Actived@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_15x14_Actived_Green.imageset/common_Icon_Star_15x14_Actived_Green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_15x14_Actived_Green.imageset/common_Icon_Star_15x14_Actived_Green@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_16x16.imageset/common_Icon_Star_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_16x16.imageset/common_Icon_Star_16x16@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_25x24.imageset/common_Icon_Star_25x24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_25x24.imageset/common_Icon_Star_25x24@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_25x24_Actived.imageset/common_Icon_Star_25x24_Actived@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_25x24_Actived.imageset/common_Icon_Star_25x24_Actived@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_25x24_UIMode_Night.imageset/common_Icon_Star_25x24_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_25x24_UIMode_Night.imageset/common_Icon_Star_25x24_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_27x26.imageset/common_Icon_Star_27x26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_27x26.imageset/common_Icon_Star_27x26@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_27x26_Actived.imageset/common_Icon_Star_27x26_Actived@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_27x26_Actived.imageset/common_Icon_Star_27x26_Actived@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_27x26_UIMode_Night.imageset/common_Icon_Star_27x26_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Star_27x26_UIMode_Night.imageset/common_Icon_Star_27x26_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_SubscribeAdd_10x10.imageset/common_Icon_SubscribeAdd_10x10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_SubscribeAdd_10x10.imageset/common_Icon_SubscribeAdd_10x10@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Subscribe_40x40_UIMode_Day.imageset/common_Icon_Subscribe_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Subscribe_40x40_UIMode_Day.imageset/common_Icon_Subscribe_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Subscribe_40x40_UIMode_Night.imageset/common_Icon_Subscribe_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Subscribe_40x40_UIMode_Night.imageset/common_Icon_Subscribe_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Tag_16x16.imageset/common_Icon_Tag_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Tag_16x16.imageset/common_Icon_Tag_16x16@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_TextBeginSign_25x25.imageset/common_Icon_TextBeginSign_25x25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_TextBeginSign_25x25.imageset/common_Icon_TextBeginSign_25x25@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Timer_10x10.imageset/common_Icon_Timer_10x10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Timer_10x10.imageset/common_Icon_Timer_10x10@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Timer_10x10_UIMode_Night.imageset/common_Icon_Timer_10x10_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Timer_10x10_UIMode_Night.imageset/common_Icon_Timer_10x10_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Timer_18x18.imageset/common_Icon_Timer_18x18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Timer_18x18.imageset/common_Icon_Timer_18x18@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Timer_18x18_UIMode_Night.imageset/common_Icon_Timer_18x18_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Timer_18x18_UIMode_Night.imageset/common_Icon_Timer_18x18_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_ToRightArrow_15x25.imageset/common_Icon_ToRightArrow_15x25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_ToRightArrow_15x25.imageset/common_Icon_ToRightArrow_15x25@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_TreadButton_16x19.imageset/common_Icon_TreadButton_16x19@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_TreadButton_16x19.imageset/common_Icon_TreadButton_16x19@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_TreadButton_16x19_Selected.imageset/common_Icon_TreadButton_16x19_Selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_TreadButton_16x19_Selected.imageset/common_Icon_TreadButton_16x19_Selected@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Tread_15x15.imageset/common_Icon_Tread_15x15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Tread_15x15.imageset/common_Icon_Tread_15x15@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Tread_15x15_Green_Selected.imageset/common_Icon_Tread_15x15_Green_Selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Tread_15x15_Green_Selected.imageset/common_Icon_Tread_15x15_Green_Selected@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Tread_15x15_Selected.imageset/common_Icon_Tread_15x15_Selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Tread_15x15_Selected.imageset/common_Icon_Tread_15x15_Selected@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Tread_15x15_UIMode_Night.imageset/common_Icon_Tread_15x15_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Tread_15x15_UIMode_Night.imageset/common_Icon_Tread_15x15_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Tread_22x22_UIMode_Day.imageset/common_Icon_Tread_22x22_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Tread_22x22_UIMode_Day.imageset/common_Icon_Tread_22x22_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Tread_37x37_UIMode_Day.imageset/common_Icon_Tread_37x37_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Tread_37x37_UIMode_Day.imageset/common_Icon_Tread_37x37_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_UpArrow_6x3_Black_UIMode_Day.imageset/common_Icon_UpArrow_6x3_Black_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_UpArrow_6x3_Black_UIMode_Day.imageset/common_Icon_UpArrow_6x3_Black_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_UpDownArrow_6x7.imageset/common_Icon_UpDownArrow_6x7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_UpDownArrow_6x7.imageset/common_Icon_UpDownArrow_6x7@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_UpDownArrow_6x7_UIMode_Night.imageset/common_Icon_UpDownArrow_6x7_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_UpDownArrow_6x7_UIMode_Night.imageset/common_Icon_UpDownArrow_6x7_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeChat_40x40_UIMode_Day.imageset/common_Icon_WeChat_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeChat_40x40_UIMode_Day.imageset/common_Icon_WeChat_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeChat_40x40_UIMode_Night.imageset/common_Icon_WeChat_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeChat_40x40_UIMode_Night.imageset/common_Icon_WeChat_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeChat_44x44.imageset/common_Icon_WeChat_44x44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeChat_44x44.imageset/common_Icon_WeChat_44x44@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeChat_60x60_UIMode_Day.imageset/common_Icon_WeChat_60x60_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeChat_60x60_UIMode_Day.imageset/common_Icon_WeChat_60x60_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeChat_60x60_UIMode_Night.imageset/common_Icon_WeChat_60x60_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeChat_60x60_UIMode_Night.imageset/common_Icon_WeChat_60x60_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiBo_24x24.imageset/common_Icon_WeiBo_24x24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiBo_24x24.imageset/common_Icon_WeiBo_24x24@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiBo_40x40_UIMode_Day.imageset/common_Icon_WeiBo_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiBo_40x40_UIMode_Day.imageset/common_Icon_WeiBo_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiBo_40x40_UIMode_Night.imageset/common_Icon_WeiBo_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiBo_40x40_UIMode_Night.imageset/common_Icon_WeiBo_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiBo_44x44.imageset/common_Icon_WeiBo_44x44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiBo_44x44.imageset/common_Icon_WeiBo_44x44@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiBo_50x50.imageset/common_Icon_WeiBo_50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiBo_50x50.imageset/common_Icon_WeiBo_50x50@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiBo_60x60_UIMode_Day.imageset/common_Icon_WeiBo_60x60_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiBo_60x60_UIMode_Day.imageset/common_Icon_WeiBo_60x60_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiBo_60x60_UIMode_Night.imageset/common_Icon_WeiBo_60x60_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiBo_60x60_UIMode_Night.imageset/common_Icon_WeiBo_60x60_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiXin_24x24.imageset/common_Icon_WeiXin_24x24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiXin_24x24.imageset/common_Icon_WeiXin_24x24@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiXin_50x50.imageset/common_Icon_WeiXin_50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_WeiXin_50x50.imageset/common_Icon_WeiXin_50x50@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Words_40x40_UIMode_Day.imageset/common_Icon_Words_40x40_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Words_40x40_UIMode_Day.imageset/common_Icon_Words_40x40_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Words_40x40_UIMode_Night.imageset/common_Icon_Words_40x40_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Icon_Words_40x40_UIMode_Night.imageset/common_Icon_Words_40x40_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_ImageColor_BlackAlphaV0to1_1x40.imageset/common_ImageColor_BlackAlphaV0to1_1x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_ImageColor_BlackAlphaV0to1_1x40.imageset/common_ImageColor_BlackAlphaV0to1_1x40@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Logo_174x41.imageset/common_Logo_174x41@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Logo_174x41.imageset/common_Logo_174x41@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Logo_71x17.imageset/common_Logo_71x17@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Logo_71x17.imageset/common_Logo_71x17@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_MenuBackground_146x168.imageset/common_MenuBackground_146x168@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_MenuBackground_146x168.imageset/common_MenuBackground_146x168@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_NIcon_Play_64x64.imageset/common_NIcon_Play_64x64@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_NIcon_Play_64x64.imageset/common_NIcon_Play_64x64@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_NavigationBar_Background.imageset/common_NavigationBar_Background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_NavigationBar_Background.imageset/common_NavigationBar_Background@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Pixel_Transparent.imageset/common_Pixel_Transparent@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Pixel_Transparent.imageset/common_Pixel_Transparent@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Shadow_Bottom_1x5_UIMode_Day.imageset/common_Shadow_Bottom_1x5_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Shadow_Bottom_1x5_UIMode_Day.imageset/common_Shadow_Bottom_1x5_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Shadow_Bottom_1x5_UIMode_Night.imageset/common_Shadow_Bottom_1x5_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Shadow_Bottom_1x5_UIMode_Night.imageset/common_Shadow_Bottom_1x5_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Shadow_Top_1x2_UIMode_Day.imageset/common_Shadow_Top_1x2_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Shadow_Top_1x2_UIMode_Day.imageset/common_Shadow_Top_1x2_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Shadow_Top_1x2_UIMode_Night.imageset/common_Shadow_Top_1x2_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_Shadow_Top_1x2_UIMode_Night.imageset/common_Shadow_Top_1x2_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_User_DefaultHeadImage_UIMode_Day.imageset/common_User_DefaultHeadImage_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/common_User_DefaultHeadImage_UIMode_Day.imageset/common_User_DefaultHeadImage_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/firstRunGuiderView_Background.imageset/firstRunGuiderView_Background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/firstRunGuiderView_Background.imageset/firstRunGuiderView_Background@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameActivityIcon_30x30_UIMode_Day.imageset/gameActivityIcon_30x30_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameActivityIcon_30x30_UIMode_Day.imageset/gameActivityIcon_30x30_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameComingSoonSpacing_320_UIMode_Day.imageset/gameComingSoonSpacing_320_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameComingSoonSpacing_320_UIMode_Day.imageset/gameComingSoonSpacing_320_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameComingSoonSpacing_320_UIMode_Night.imageset/gameComingSoonSpacing_320_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameComingSoonSpacing_320_UIMode_Night.imageset/gameComingSoonSpacing_320_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameComingSoonSpacing_375_UIMode_Day.imageset/gameComingSoonSpacing_375_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameComingSoonSpacing_375_UIMode_Day.imageset/gameComingSoonSpacing_375_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameComingSoonSpacing_375_UIMode_Night.imageset/gameComingSoonSpacing_375_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameComingSoonSpacing_375_UIMode_Night.imageset/gameComingSoonSpacing_375_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameComingSoonSpacing_414_UIMode_Day.imageset/gameComingSoonSpacing_414_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameComingSoonSpacing_414_UIMode_Day.imageset/gameComingSoonSpacing_414_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameComingSoonSpacing_414_UIMode_Night.imageset/gameComingSoonSpacing_414_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameComingSoonSpacing_414_UIMode_Night.imageset/gameComingSoonSpacing_414_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameDetail_HorizontalSpliterLine_1x80.imageset/gameDetail_HorizontalSpliterLine_1x80@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameDetail_HorizontalSpliterLine_1x80.imageset/gameDetail_HorizontalSpliterLine_1x80@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameDetailsShare_24x24_White.imageset/gameDetailsShare_24x24_White@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameDetailsShare_24x24_White.imageset/gameDetailsShare_24x24_White@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameFindIcon_unfurled_13x12_UIMode_Day.imageset/gameFindIcon_unfurled_13x12_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameFindIcon_unfurled_13x12_UIMode_Day.imageset/gameFindIcon_unfurled_13x12_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameFindIcon_unfurled_13x12_UIMode_Night.imageset/gameFindIcon_unfurled_13x12_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameFindIcon_unfurled_13x12_UIMode_Night.imageset/gameFindIcon_unfurled_13x12_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameHomePageComment_48x48.imageset/gameHomePageComment_48x48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameHomePageComment_48x48.imageset/gameHomePageComment_48x48@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameHomePageFindGame_48x48.imageset/gameHomePageFindGame_48x48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameHomePageFindGame_48x48.imageset/gameHomePageFindGame_48x48@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameHomePageHistory_16x16_UIMode_Day.imageset/gameHomePageHistory_16x16_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameHomePageHistory_16x16_UIMode_Day.imageset/gameHomePageHistory_16x16_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameHomePageHistory_16x16_UIMode_Night.imageset/gameHomePageHistory_16x16_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameHomePageHistory_16x16_UIMode_Night.imageset/gameHomePageHistory_16x16_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameHomePageRanking_48x48.imageset/gameHomePageRanking_48x48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameHomePageRanking_48x48.imageset/gameHomePageRanking_48x48@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameHomePageSale_48x48.imageset/gameHomePageSale_48x48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameHomePageSale_48x48.imageset/gameHomePageSale_48x48@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameHomePageSpecial_48x48.imageset/gameHomePageSpecial_48x48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameHomePageSpecial_48x48.imageset/gameHomePageSpecial_48x48@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameLikeIcon_ Normal_44x44_UIMode_Day.imageset/gameLikeIcon_ Normal_44x44_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameLikeIcon_ Normal_44x44_UIMode_Day.imageset/gameLikeIcon_ Normal_44x44_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameLikeIcon_ Normal_44x44_UIMode_Night.imageset/gameLikeIcon_ Normal_44x44_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameLikeIcon_ Normal_44x44_UIMode_Night.imageset/gameLikeIcon_ Normal_44x44_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameLikeIcon_select_44x44_UIMode_Day.imageset/gameLikeIcon_select_44x44_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameLikeIcon_select_44x44_UIMode_Day.imageset/gameLikeIcon_select_44x44_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameLikeIcon_select_44x44_UIMode_Night.imageset/gameLikeIcon_select_44x44_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gameLikeIcon_select_44x44_UIMode_Night.imageset/gameLikeIcon_select_44x44_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamefindIcon_lowerSelect_8x12_UIMode_Day.imageset/gamefindIcon_lowerSelect_8x12_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamefindIcon_lowerSelect_8x12_UIMode_Day.imageset/gamefindIcon_lowerSelect_8x12_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamefindIcon_lower_8x12_UIMode_Day.imageset/gamefindIcon_lower_8x12_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamefindIcon_lower_8x12_UIMode_Day.imageset/gamefindIcon_lower_8x12_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamefindIcon_lower_8x12_UIMode_Night.imageset/gamefindIcon_lower_8x12_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamefindIcon_lower_8x12_UIMode_Night.imageset/gamefindIcon_lower_8x12_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamefindIcon_upward_8x12_UIMode_Day.imageset/gamefindIcon_upward_8x12_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamefindIcon_upward_8x12_UIMode_Day.imageset/gamefindIcon_upward_8x12_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamefindIcon_upward_8x12_UIMode_Night.imageset/gamefindIcon_upward_8x12_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamefindIcon_upward_8x12_UIMode_Night.imageset/gamefindIcon_upward_8x12_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamerSky_FaShouBiao_Cover.imageset/gamerSky_FaShouBiao_Cover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamerSky_FaShouBiao_Cover.imageset/gamerSky_FaShouBiao_Cover@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamerSky_Logo.imageset/gamerSky_Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamerSky_Logo.imageset/gamerSky_Logo@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamerSky_PingCeZhongXin_Cover.imageset/gamerSky_PingCeZhongXin_Cover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamerSky_PingCeZhongXin_Cover.imageset/gamerSky_PingCeZhongXin_Cover@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamerSky_YouMinZhuanLan_Cover.imageset/gamerSky_YouMinZhuanLan_Cover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gamerSky_YouMinZhuanLan_Cover.imageset/gamerSky_YouMinZhuanLan_Cover@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppHTMLTemplate_ImgBoxer_Background.imageset/gsAppHTMLTemplate_ImgBoxer_Background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppHTMLTemplate_ImgBoxer_Background.imageset/gsAppHTMLTemplate_ImgBoxer_Background@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppHTMLTemplate_ImgBoxer_LoadTheImage.imageset/gsAppHTMLTemplate_ImgBoxer_LoadTheImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppHTMLTemplate_ImgBoxer_LoadTheImage.imageset/gsAppHTMLTemplate_ImgBoxer_LoadTheImage@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppHTMLTemplate_Video_Background.imageset/gsAppHTMLTemplate_Video_Background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppHTMLTemplate_Video_Background.imageset/gsAppHTMLTemplate_Video_Background@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppUIImageBrowser_DragLeftToExit.imageset/gsAppUIImageBrowser_DragLeftToExit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppUIImageBrowser_DragLeftToExit.imageset/gsAppUIImageBrowser_DragLeftToExit@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppUIImageBrowser_DragRightToExit.imageset/gsAppUIImageBrowser_DragRightToExit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppUIImageBrowser_DragRightToExit.imageset/gsAppUIImageBrowser_DragRightToExit@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppUIImageBrowser_ReleaseToExit.imageset/gsAppUIImageBrowser_ReleaseToExit@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppUIImageBrowser_ReleaseToExit.imageset/gsAppUIImageBrowser_ReleaseToExit@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppUITip_Background_236x156.imageset/gsAppUITip_Background_236x156@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppUITip_Background_236x156.imageset/gsAppUITip_Background_236x156@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppUI_CommonOperateBar_UIMode_Day.imageset/gsAppUI_CommonOperateBar_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppUI_CommonOperateBar_UIMode_Day.imageset/gsAppUI_CommonOperateBar_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppUI_CommonOperateBar_UIMode_Night.imageset/gsAppUI_CommonOperateBar_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsAppUI_CommonOperateBar_UIMode_Night.imageset/gsAppUI_CommonOperateBar_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUICheckBox_IconChecked.imageset/gsUICheckBox_IconChecked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUICheckBox_IconChecked.imageset/gsUICheckBox_IconChecked@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUICheckBox_IconNormal.imageset/gsUICheckBox_IconNormal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUICheckBox_IconNormal.imageset/gsUICheckBox_IconNormal@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIPopupView_CloseButton_Gray.imageset/gsUIPopupView_CloseButton_Gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIPopupView_CloseButton_Gray.imageset/gsUIPopupView_CloseButton_Gray@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIPopupView_CloseButton_White.imageset/gsUIPopupView_CloseButton_White@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIPopupView_CloseButton_White.imageset/gsUIPopupView_CloseButton_White@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_CloseButton_10x10.imageset/gsUIVideoPlayer_CloseButton_10x10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_CloseButton_10x10.imageset/gsUIVideoPlayer_CloseButton_10x10@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_FullScreenButton_15x15.imageset/gsUIVideoPlayer_FullScreenButton_15x15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_FullScreenButton_15x15.imageset/gsUIVideoPlayer_FullScreenButton_15x15@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_FullScreenButton_20x20.imageset/gsUIVideoPlayer_FullScreenButton_20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_FullScreenButton_20x20.imageset/gsUIVideoPlayer_FullScreenButton_20x20@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_FullScreenButton_40x40.imageset/gsUIVideoPlayer_FullScreenButton_40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_FullScreenButton_40x40.imageset/gsUIVideoPlayer_FullScreenButton_40x40@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_PauseButton_16x20.imageset/gsUIVideoPlayer_PauseButton_16x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_PauseButton_16x20.imageset/gsUIVideoPlayer_PauseButton_16x20@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_PauseButton_20x20.imageset/gsUIVideoPlayer_PauseButton_20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_PauseButton_20x20.imageset/gsUIVideoPlayer_PauseButton_20x20@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_PlayButton_16x20.imageset/gsUIVideoPlayer_PlayButton_16x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_PlayButton_16x20.imageset/gsUIVideoPlayer_PlayButton_16x20@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_PlayButton_20x20.imageset/gsUIVideoPlayer_PlayButton_20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_PlayButton_20x20.imageset/gsUIVideoPlayer_PlayButton_20x20@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_ProgressDragger_13x13.imageset/gsUIVideoPlayer_ProgressDragger_13x13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_ProgressDragger_13x13.imageset/gsUIVideoPlayer_ProgressDragger_13x13@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_ReplayButton_20x20.imageset/gsUIVideoPlayer_ReplayButton_20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoPlayer_ReplayButton_20x20.imageset/gsUIVideoPlayer_ReplayButton_20x20@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoView_PauseButton.imageset/gsUIVideoView_PauseButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoView_PauseButton.imageset/gsUIVideoView_PauseButton@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoView_PlayButton.imageset/gsUIVideoView_PlayButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/gsUIVideoView_PlayButton.imageset/gsUIVideoView_PlayButton@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_BackArrow_20x20_Gray.imageset/icon_BackArrow_20x20_Gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_BackArrow_20x20_Gray.imageset/icon_BackArrow_20x20_Gray@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_ForwardArrow_20x20_Gray.imageset/icon_ForwardArrow_20x20_Gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_ForwardArrow_20x20_Gray.imageset/icon_ForwardArrow_20x20_Gray@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_New_18x8.imageset/icon_New_18x8@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_New_18x8.imageset/icon_New_18x8@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_New_18x8_UIMode_Night.imageset/icon_New_18x8_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_New_18x8_UIMode_Night.imageset/icon_New_18x8_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_Praise_UIMode_Day.imageset/icon_Praise_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_Praise_UIMode_Day.imageset/icon_Praise_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_Praise_UIMode_Night.imageset/icon_Praise_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_Praise_UIMode_Night.imageset/icon_Praise_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_Praised_UIMode_Day.imageset/icon_Praised_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_Praised_UIMode_Day.imageset/icon_Praised_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_Praised_UIMode_Night.imageset/icon_Praised_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/icon_Praised_UIMode_Night.imageset/icon_Praised_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/imageBrowerReturn_whiteColor20x20.imageset/imageBrowerReturn_whiteColor20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/imageBrowerReturn_whiteColor20x20.imageset/imageBrowerReturn_whiteColor20x20@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/imgSet_BottomBarBackground.imageset/imgSet_BottomBarBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/imgSet_BottomBarBackground.imageset/imgSet_BottomBarBackground@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/imgSet_ExpandIcon.imageset/imgSet_ExpandIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/imgSet_ExpandIcon.imageset/imgSet_ExpandIcon@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/img_Badge_GIF.imageset/img_Badge_GIF@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/img_Badge_GIF.imageset/img_Badge_GIF@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/launchScreen_LogoImage.imageset/launchScreen_LogoImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/launchScreen_LogoImage.imageset/launchScreen_LogoImage@3x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/originalAllColumns10x10.imageset/originalAllColumns10x10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/originalAllColumns10x10.imageset/originalAllColumns10x10@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/originalAllColumns10x10_Night.imageset/originalAllColumns10x10_Night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/originalAllColumns10x10_Night.imageset/originalAllColumns10x10_Night.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/protocolSelection_14x14_UIMode_Day.imageset/protocolSelection_14x14_UIMode_Day@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/protocolSelection_14x14_UIMode_Day.imageset/protocolSelection_14x14_UIMode_Day@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/protocolSelection_14x14_UIMode_Night.imageset/protocolSelection_14x14_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/protocolSelection_14x14_UIMode_Night.imageset/protocolSelection_14x14_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/shareView_elect_15x15.imageset/shareView_elect_15x15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/shareView_elect_15x15.imageset/shareView_elect_15x15@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/shareView_noElect_15x15.imageset/shareView_noElect_15x15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/shareView_noElect_15x15.imageset/shareView_noElect_15x15@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNewsNotification_48x48.imageset/userNewsNotification_48x48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNewsNotification_48x48.imageset/userNewsNotification_48x48@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNewsNotification_48x48_UIMode_Night.imageset/userNewsNotification_48x48_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNewsNotification_48x48_UIMode_Night.imageset/userNewsNotification_48x48_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNotificationPullDownMenu_125x150.imageset/userNotificationPullDownMenu_125x150@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNotificationPullDownMenu_125x150.imageset/userNotificationPullDownMenu_125x150@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNotificationPullDown_10x7.imageset/userNotificationPullDown_10x7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNotificationPullDown_10x7.imageset/userNotificationPullDown_10x7@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNotificationQuanZi_12x13.imageset/userNotificationQuanZi_12x13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNotificationQuanZi_12x13.imageset/userNotificationQuanZi_12x13@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNotificationSetting_25x25.imageset/userNotificationSetting_25x25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNotificationSetting_25x25.imageset/userNotificationSetting_25x25@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNotificationXinWen_12x13.imageset/userNotificationXinWen_12x13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNotificationXinWen_12x13.imageset/userNotificationXinWen_12x13@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNotificationZhongPing_12x13.imageset/userNotificationZhongPing_12x13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userNotificationZhongPing_12x13.imageset/userNotificationZhongPing_12x13@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userOfficialdomNotification_48x48.imageset/userOfficialdomNotification_48x48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userOfficialdomNotification_48x48.imageset/userOfficialdomNotification_48x48@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userPraiseNotification_48x48.imageset/userPraiseNotification_48x48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userPraiseNotification_48x48.imageset/userPraiseNotification_48x48@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userReadTag_25x25.imageset/userReadTag_25x25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userReadTag_25x25.imageset/userReadTag_25x25@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userReplyNotification_48x48.imageset/userReplyNotification_48x48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userReplyNotification_48x48.imageset/userReplyNotification_48x48@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userReplyNotification_48x48_UIMode_Night.imageset/userReplyNotification_48x48_UIMode_Night@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/userReplyNotification_48x48_UIMode_Night.imageset/userReplyNotification_48x48_UIMode_Night@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/user_DefaultHeadImage.imageset/user_DefaultHeadImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/GamerSkyImage/user_DefaultHeadImage.imageset/user_DefaultHeadImage@2x.png -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/Placeholder/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/Placeholder/hg_default-error.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hg-error.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/Placeholder/hg_default-error.imageset/hg-error.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/Placeholder/hg_default-error.imageset/hg-error.pdf -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/Placeholder/hg_default-no_connection.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hg-no_connection.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /GamerSky/Resources/Assets/Assets.xcassets/Placeholder/hg_default-no_connection.imageset/hg-no_connection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/GamerSky/Resources/Assets/Assets.xcassets/Placeholder/hg_default-no_connection.imageset/hg-no_connection.pdf -------------------------------------------------------------------------------- /Screenshots/Game1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/Screenshots/Game1.gif -------------------------------------------------------------------------------- /Screenshots/Game2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/Screenshots/Game2.gif -------------------------------------------------------------------------------- /Screenshots/Game3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/Screenshots/Game3.gif -------------------------------------------------------------------------------- /Screenshots/News.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InsectQY/GamerSky/b6930ca9cd4aff062d05c4a8fa1675b0b670ff3d/Screenshots/News.gif --------------------------------------------------------------------------------