├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .idea └── .idea.osu.Game.Rulesets.IGPlayer │ └── .idea │ ├── .gitignore │ ├── .name │ ├── AndroidProjectSystem.xml │ ├── deploymentTargetSelector.xml │ ├── indexLayout.xml │ └── vcs.xml ├── BuildHikariii.Android ├── AndroidManifest.xml ├── BuildHikariii.Android.csproj └── Class1.cs ├── BuildHikariii.Windows ├── BuildHikariii.Windows.csproj └── Class1.cs ├── BuildHikariii ├── BuildHikariii.csproj └── Class1.cs ├── LICENCE ├── LLin.OSIntegrations ├── DBusXml │ ├── Handler │ │ ├── org.mpris.MediaPlayer2.Player.xml │ │ ├── org.mpris.MediaPlayer2.xml │ │ └── xyz.nifeather.llin.greeter.xml │ └── Proxy │ │ ├── org.freedesktop.DBus.xml │ │ ├── org.freedesktop.Notifications.xml │ │ └── org.freedesktop.portal.Settings.xml ├── LLin.OSIntegrations.csproj ├── Linux │ └── DBus │ │ ├── DBusSession.cs │ │ └── Services │ │ ├── DBusAccess │ │ ├── DBusAccess.cs │ │ └── DBusProxy.cs │ │ ├── FreedesktopNotificationsAccessor.cs │ │ ├── FreedesktopSettingsAccessor.cs │ │ ├── Greeter │ │ ├── Greet.cs │ │ └── GreeterService.cs │ │ └── Mpris │ │ ├── MprisPlayerControllerImpl.cs │ │ ├── MprisPlayerImpl.cs │ │ ├── MprisService.cs │ │ └── MprisStatusStrings.cs └── Windows │ └── WindowsMediaIntegration.cs ├── M.Resources ├── Documents │ └── releaseNote.md ├── Fonts │ └── Font.cs ├── Localisation │ └── LLin │ │ ├── BaseStrings.zh.resx │ │ ├── GenericStrings.zh.resx │ │ ├── LLinPluginNameStrings.resx │ │ ├── LLinPluginNameStrings.zh.resx │ │ └── Plugins │ │ ├── CloudMusicStrings.zh.resx │ │ ├── CollectionStrings.zh.resx │ │ ├── StpStrings.zh.resx │ │ └── YaspStrings.zh.resx ├── M.Resources.csproj ├── MResources.cs └── Textures │ ├── Icons │ └── Hexacons │ │ ├── aboutMF.png │ │ └── time.png │ └── circle.png ├── README.md ├── osu.Game.Rulesets.Hikariii.Tests.Android ├── MainActivity.cs ├── Properties │ └── AndroidManifest.xml └── osu.Game.Rulesets.Hikariii.Tests.Android.csproj ├── osu.Game.Rulesets.Hikariii.Tests ├── .vscode │ ├── launch.json │ └── tasks.json ├── HikariiiTestBrowser.cs ├── TestLoopingContainer.cs ├── TestSceneOsuGame.cs ├── TestScenePlayerScreen.cs ├── VisualTestRunner.cs └── osu.Game.Rulesets.Hikariii.Tests.csproj ├── osu.Game.Rulesets.Hikariii ├── Features │ ├── Configuration │ │ └── MConfigManager.cs │ ├── DownloadAccel │ │ ├── AccelBeatmapDownloadTracker.cs │ │ ├── AccelBeatmapModelDownloader.cs │ │ ├── AccelUtils │ │ │ ├── AccelExtensions.cs │ │ │ ├── ChimuExtensionHandler.cs │ │ │ ├── ExtensionHandlerStore.cs │ │ │ ├── IExtensionHandler.cs │ │ │ ├── NumberExtensionHandler.cs │ │ │ ├── ProcessResult.cs │ │ │ └── SayoExtensionHandler.cs │ │ ├── Extensions │ │ │ ├── AccelExtensions.cs │ │ │ ├── ChimuExtensionHandler.cs │ │ │ ├── IExtensionHandler.cs │ │ │ ├── NumberExtensionHandler.cs │ │ │ └── SayoExtensionHandler.cs │ │ └── Graphics │ │ │ ├── AccelDownloadButton.cs │ │ │ ├── AccelDownloadProgressBar.cs │ │ │ └── AccelOptionContainer.cs │ ├── FeatureManager.cs │ ├── ListenerLoader │ │ ├── AbstractInjector.cs │ │ ├── Handlers │ │ │ ├── HikariiiFeatureBoxListener.cs │ │ │ ├── PreviewTrackHandler.cs │ │ │ ├── ScreenHandlerManager.cs │ │ │ ├── ScreenHandlers │ │ │ │ ├── AbstractScreenHandler.cs │ │ │ │ ├── GamePlayerHandler.cs │ │ │ │ └── NewSongSelectHandler.cs │ │ │ └── SentryLoggerDisabler.cs │ │ ├── ListenerLoader.cs │ │ └── Utils │ │ │ └── HandlerExtension.cs │ ├── Player │ │ ├── Extensions │ │ │ └── APIBeatmapSetExtension.cs │ │ ├── Graphics │ │ │ ├── AudioControlRequestDialog.cs │ │ │ ├── EnterExitAnimation.cs │ │ │ ├── LLinBottombarPaddingIndicatorMaybe.cs │ │ │ ├── PluginSidebarPage.cs │ │ │ ├── SettingsItems │ │ │ │ └── SettingsEntry.cs │ │ │ └── SideBar │ │ │ │ ├── ISidebarContent.cs │ │ │ │ ├── PluginOptionsContainer.cs │ │ │ │ ├── PluginsPage │ │ │ │ ├── PluginPiece.cs │ │ │ │ ├── PluginRemoveConfirmDialog.cs │ │ │ │ └── PluginsSection.cs │ │ │ │ ├── Settings │ │ │ │ ├── ISettingsItem.cs │ │ │ │ ├── Items │ │ │ │ │ ├── PlaceHolder.cs │ │ │ │ │ ├── SettingsEnumPiece.cs │ │ │ │ │ ├── SettingsListPiece.cs │ │ │ │ │ ├── SettingsPieceBasePanel.cs │ │ │ │ │ ├── SettingsSeparatorPiece.cs │ │ │ │ │ ├── SettingsSlider.cs │ │ │ │ │ ├── SettingsSliderPiece.cs │ │ │ │ │ ├── SettingsStringPiece.cs │ │ │ │ │ ├── SettingsTextBoxPiece.cs │ │ │ │ │ └── SettingsTogglePiece.cs │ │ │ │ ├── PlayerSettings.cs │ │ │ │ └── Sections │ │ │ │ │ └── Section.cs │ │ │ │ ├── SidebarPluginsPage.cs │ │ │ │ ├── SongSelectPage.cs │ │ │ │ └── Tabs │ │ │ │ ├── HeaderTabItem.cs │ │ │ │ ├── OptionButtonFlow.cs │ │ │ │ └── TabControlPosition.cs │ │ ├── Input │ │ │ └── InputHandler.cs │ │ ├── Interfaces │ │ │ ├── IImplementLLin.cs │ │ │ └── Plugins │ │ │ │ ├── IFunctionBarProvider.cs │ │ │ │ ├── IFunctionProvider.cs │ │ │ │ ├── IProvideAudioControlPlugin.cs │ │ │ │ └── LLinPlugin.cs │ │ ├── Misc │ │ │ ├── BeatmapBackground.cs │ │ │ ├── BeatmapCover.cs │ │ │ ├── BeatmapHashResolver.cs │ │ │ ├── BeatmapMetadataExtension.cs │ │ │ ├── BgTrianglesContainer.cs │ │ │ ├── BlockMouseBox.cs │ │ │ ├── Flash.cs │ │ │ ├── HikariiiBeatSyncProvider.cs │ │ │ ├── HikariiiSamplePlaybackAntiDisabler.cs │ │ │ ├── Indicator.cs │ │ │ ├── LLinDialog.cs │ │ │ ├── LLinModRateAdjust.cs │ │ │ ├── LoadingIndicator.cs │ │ │ ├── PlayerInfo.cs │ │ │ ├── PluginProgressNotification.cs │ │ │ ├── PluginResolvers │ │ │ │ ├── LLinPluginResolver.cs │ │ │ │ └── MvisPluginResolver.cs │ │ │ └── ProgressState.cs │ │ ├── Plugins │ │ │ ├── Bundle │ │ │ │ ├── BottomBar │ │ │ │ │ ├── Buttons │ │ │ │ │ │ ├── BottomBarButton.cs │ │ │ │ │ │ ├── BottomBarSwitchButton.cs │ │ │ │ │ │ └── SongProgressButton.cs │ │ │ │ │ ├── SongProgressBar.cs │ │ │ │ │ ├── StandardBottomBar.cs │ │ │ │ │ └── StandardBottomBarProvider.cs │ │ │ │ ├── CloudMusic │ │ │ │ │ ├── Config │ │ │ │ │ │ └── LyricConfigManager.cs │ │ │ │ │ ├── Helper │ │ │ │ │ │ ├── APILyricRequest.cs │ │ │ │ │ │ ├── APISearchRequest.cs │ │ │ │ │ │ ├── LevenshteinDistance.cs │ │ │ │ │ │ ├── LyricProperties │ │ │ │ │ │ │ ├── IPropertyProcessor.cs │ │ │ │ │ │ │ ├── Processors │ │ │ │ │ │ │ │ ├── AuthorProcessor.cs │ │ │ │ │ │ │ │ └── TimeProcessor.cs │ │ │ │ │ │ │ └── PropertyProcessorManager.cs │ │ │ │ │ │ ├── OnlineLyrics.cs │ │ │ │ │ │ ├── RequestFinishMeta.cs │ │ │ │ │ │ ├── SearchOption.cs │ │ │ │ │ │ └── UserDefinitionHelper.cs │ │ │ │ │ ├── LyricPlugin.cs │ │ │ │ │ ├── LyricPluginProvider.cs │ │ │ │ │ ├── Misc │ │ │ │ │ │ ├── APILyricResponseRoot.cs │ │ │ │ │ │ ├── APISearchResponseRoot.cs │ │ │ │ │ │ ├── APISearchResultInfo.cs │ │ │ │ │ │ ├── APISongInfo.cs │ │ │ │ │ │ ├── ArtistInfo.cs │ │ │ │ │ │ ├── Lyric.cs │ │ │ │ │ │ ├── LyricInfo.cs │ │ │ │ │ │ └── Mapping │ │ │ │ │ │ │ ├── BeatmapLyricMapping.cs │ │ │ │ │ │ │ └── LyricMappings.cs │ │ │ │ │ ├── Sidebar │ │ │ │ │ │ ├── Graphic │ │ │ │ │ │ │ ├── DrawableLyric.cs │ │ │ │ │ │ │ ├── DummyDrawableLyric.cs │ │ │ │ │ │ │ ├── EditableLyricPiece.cs │ │ │ │ │ │ │ ├── LyricPiece.cs │ │ │ │ │ │ │ ├── Toolbox.cs │ │ │ │ │ │ │ └── TrackTimeIndicator.cs │ │ │ │ │ │ ├── LyricFunctionProvider.cs │ │ │ │ │ │ ├── LyricSidebarPage.cs │ │ │ │ │ │ ├── Screens │ │ │ │ │ │ │ ├── LyricScreen.cs │ │ │ │ │ │ │ ├── LyricViewScreen.cs │ │ │ │ │ │ │ └── SidebarScreen.cs │ │ │ │ │ │ └── SidebarScreenStack.cs │ │ │ │ │ └── UI │ │ │ │ │ │ ├── LyricLineHandler.cs │ │ │ │ │ │ └── SettingsAnchorPiece.cs │ │ │ │ ├── Collection │ │ │ │ │ ├── Chooser │ │ │ │ │ │ ├── RandomChooser.cs │ │ │ │ │ │ └── SequenceChooser.cs │ │ │ │ │ ├── CollectionHelper.cs │ │ │ │ │ ├── CollectionHelperProvider.cs │ │ │ │ │ ├── Config │ │ │ │ │ │ └── CollectionHelperConfigManager.cs │ │ │ │ │ ├── IBeatmapChooser.cs │ │ │ │ │ ├── Sidebar │ │ │ │ │ │ ├── BeatmapList.cs │ │ │ │ │ │ ├── BeatmapPiece.cs │ │ │ │ │ │ ├── CollectionFunctionProvider.cs │ │ │ │ │ │ ├── CollectionInfo.cs │ │ │ │ │ │ ├── CollectionPanel.cs │ │ │ │ │ │ ├── CollectionPluginPage.cs │ │ │ │ │ │ └── TooltipContainer.cs │ │ │ │ │ └── Utils │ │ │ │ │ │ └── BeatmapInfoExtensions.cs │ │ │ │ ├── SandboxToPanel │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Resources │ │ │ │ │ │ ├── Samples │ │ │ │ │ │ │ ├── die.wav │ │ │ │ │ │ │ ├── flap.wav │ │ │ │ │ │ │ ├── hit.wav │ │ │ │ │ │ │ └── point.wav │ │ │ │ │ │ └── Shaders │ │ │ │ │ │ │ └── sh_RulesetUtils.h │ │ │ │ │ ├── RulesetComponents │ │ │ │ │ │ ├── Configuration │ │ │ │ │ │ │ └── SandboxRulesetConfigManager.cs │ │ │ │ │ │ ├── Extensions │ │ │ │ │ │ │ ├── MathExtensions.cs │ │ │ │ │ │ │ ├── OpenSimplexNoise.cs │ │ │ │ │ │ │ └── ProjectileExtensions.cs │ │ │ │ │ │ ├── Graphics │ │ │ │ │ │ │ ├── ContentFitContainer.cs │ │ │ │ │ │ │ └── InnerShadowContainer.cs │ │ │ │ │ │ ├── Screens │ │ │ │ │ │ │ ├── SandboxScreen.cs │ │ │ │ │ │ │ ├── SandboxScreenWithSettings.cs │ │ │ │ │ │ │ └── Visualizer │ │ │ │ │ │ │ │ ├── Components │ │ │ │ │ │ │ │ ├── LayoutController.cs │ │ │ │ │ │ │ │ ├── Layouts │ │ │ │ │ │ │ │ │ ├── DrawableVisualizerLayout.cs │ │ │ │ │ │ │ │ │ ├── EmptyLayout.cs │ │ │ │ │ │ │ │ │ ├── TypeA │ │ │ │ │ │ │ │ │ │ ├── CircularBeatmapLogo.cs │ │ │ │ │ │ │ │ │ │ ├── TypeAVisualizerController.cs │ │ │ │ │ │ │ │ │ │ └── UpdateableBeatmapBackground.cs │ │ │ │ │ │ │ │ │ ├── TypeALayout.cs │ │ │ │ │ │ │ │ │ ├── TypeB │ │ │ │ │ │ │ │ │ │ └── TypeBVisualizerController.cs │ │ │ │ │ │ │ │ │ └── TypeBLayout.cs │ │ │ │ │ │ │ │ ├── MusicHelpers │ │ │ │ │ │ │ │ │ ├── CurrentBeatmapProvider.cs │ │ │ │ │ │ │ │ │ ├── CurrentRateContainer.cs │ │ │ │ │ │ │ │ │ ├── MusicAmplitudesProvider.cs │ │ │ │ │ │ │ │ │ ├── MusicIntensityController.cs │ │ │ │ │ │ │ │ │ └── RateAdjustableContainer.cs │ │ │ │ │ │ │ │ ├── Particles.cs │ │ │ │ │ │ │ │ ├── ParticlesDrawable.cs │ │ │ │ │ │ │ │ ├── Settings │ │ │ │ │ │ │ │ │ ├── BackgroundSection.cs │ │ │ │ │ │ │ │ │ ├── LayoutSettingsSubsection.cs │ │ │ │ │ │ │ │ │ ├── ParticleSettings.cs │ │ │ │ │ │ │ │ │ ├── TrackSection.cs │ │ │ │ │ │ │ │ │ └── VisualizerSection.cs │ │ │ │ │ │ │ │ ├── VisualizerSettingsTip.cs │ │ │ │ │ │ │ │ └── Visualizers │ │ │ │ │ │ │ │ │ ├── Circular │ │ │ │ │ │ │ │ │ ├── BasicMusicVisualizerDrawable.cs │ │ │ │ │ │ │ │ │ ├── DotsMusicVisualizerDrawable.cs │ │ │ │ │ │ │ │ │ ├── FallMusicVisualizerDrawable.cs │ │ │ │ │ │ │ │ │ └── RoundedMusicVisualizerDrawable.cs │ │ │ │ │ │ │ │ │ ├── CircularMusicVisualizerDrawable.cs │ │ │ │ │ │ │ │ │ ├── Linear │ │ │ │ │ │ │ │ │ ├── BasicLinearMusicVisualizerDrawable.cs │ │ │ │ │ │ │ │ │ └── RoundedLinearMusicVisualizerDrawable.cs │ │ │ │ │ │ │ │ │ ├── LinearMusicVisualizerDrawable.cs │ │ │ │ │ │ │ │ │ └── MusicVisualizerDrawable.cs │ │ │ │ │ │ │ │ └── VisualizerScreen.cs │ │ │ │ │ │ └── UI │ │ │ │ │ │ │ ├── InteractiveContainer.cs │ │ │ │ │ │ │ ├── Overlays │ │ │ │ │ │ │ ├── SandboxCheckbox.cs │ │ │ │ │ │ │ └── SandboxOverlay.cs │ │ │ │ │ │ │ ├── SandboxPlayfield.cs │ │ │ │ │ │ │ ├── Settings │ │ │ │ │ │ │ ├── ColourPickerDropdown.cs │ │ │ │ │ │ │ ├── SandboxSettings.cs │ │ │ │ │ │ │ ├── SandboxSettingsSection.cs │ │ │ │ │ │ │ └── SettingsDropdownContainer.cs │ │ │ │ │ │ │ ├── StoryboardContainer.cs │ │ │ │ │ │ │ ├── SupportButton.cs │ │ │ │ │ │ │ └── TrackController.cs │ │ │ │ │ ├── SandboxPanel.cs │ │ │ │ │ ├── SandboxPanelProvider.cs │ │ │ │ │ ├── Textures │ │ │ │ │ │ ├── Flappy.png │ │ │ │ │ │ ├── FlappyDon │ │ │ │ │ │ │ ├── bg.png │ │ │ │ │ │ │ ├── gameover.png │ │ │ │ │ │ │ ├── ground.png │ │ │ │ │ │ │ ├── message.png │ │ │ │ │ │ │ ├── pipe.png │ │ │ │ │ │ │ ├── redbird-downflap.png │ │ │ │ │ │ │ ├── redbird-midflap.png │ │ │ │ │ │ │ └── redbird-upflap.png │ │ │ │ │ │ ├── Fractal.png │ │ │ │ │ │ ├── MvisPluginSandbox │ │ │ │ │ │ │ └── SandboxPanel.png │ │ │ │ │ │ ├── Numbers.png │ │ │ │ │ │ ├── Vis.png │ │ │ │ │ │ ├── Visualizer │ │ │ │ │ │ │ └── particle.png │ │ │ │ │ │ └── ruleset.png │ │ │ │ │ └── lazer-sandbox-README.md │ │ │ │ ├── Storyboard │ │ │ │ │ ├── BackgroundStoryBoardLoader.cs │ │ │ │ │ ├── Config │ │ │ │ │ │ └── SBLoaderConfigManager.cs │ │ │ │ │ ├── Storyboard │ │ │ │ │ │ └── BackgroundStoryboard.cs │ │ │ │ │ └── StoryboardSupportProvider.cs │ │ │ │ └── Yasp │ │ │ │ │ ├── Config │ │ │ │ │ └── ExamplePluginConfigManager.cs │ │ │ │ │ ├── Panels │ │ │ │ │ ├── ClassicPanel.cs │ │ │ │ │ ├── CoverIIPanel.cs │ │ │ │ │ ├── IPanel.cs │ │ │ │ │ └── NsiPanel.cs │ │ │ │ │ ├── YaspPlugin.cs │ │ │ │ │ └── YaspProvider.cs │ │ │ ├── Config │ │ │ │ ├── DefaultPluginConfigManager.cs │ │ │ │ ├── IPluginConfigManager.cs │ │ │ │ ├── PluginConfigManager.cs │ │ │ │ ├── PluginSettingsSubSection.cs │ │ │ │ └── SidebarSettingsSection.cs │ │ │ ├── DialogOption.cs │ │ │ ├── Internal │ │ │ │ ├── DummyBase │ │ │ │ │ ├── ColourPreviewer.cs │ │ │ │ │ ├── DummyBasePlugin.cs │ │ │ │ │ └── DummyBasePluginProvider.cs │ │ │ │ ├── FallbackFunctionBar │ │ │ │ │ ├── FallbackFunctionBar.cs │ │ │ │ │ ├── FallbackFunctionBarProvider.cs │ │ │ │ │ ├── SimpleBarButton.cs │ │ │ │ │ ├── SongProgressButton.cs │ │ │ │ │ └── ToggleableBarButton.cs │ │ │ │ ├── ForwardingDummyConfigManager.cs │ │ │ │ └── OsuAudio │ │ │ │ │ ├── OsuAudioPluginProvider.cs │ │ │ │ │ └── OsuMusicControllerWrapper.cs │ │ │ ├── LLinPluginManager.cs │ │ │ ├── LLinPluginProvider.cs │ │ │ ├── PluginDescription.cs │ │ │ ├── PluginKeybind.cs │ │ │ ├── PluginStore.cs │ │ │ └── Types │ │ │ │ ├── BindableControlledPlugin.cs │ │ │ │ ├── FakeButton.cs │ │ │ │ └── ToggleableButtonWrapper.cs │ │ └── Screens │ │ │ ├── LLin │ │ │ ├── CustomColourProvider.cs │ │ │ ├── InPlayerUserActivity.cs │ │ │ ├── InputManagerTracker.cs │ │ │ ├── LLinLoader.cs │ │ │ ├── LLinMediaSource.cs │ │ │ ├── LLinScreen.cs │ │ │ ├── MfBgTriangles.cs │ │ │ └── SessionPluginManager.cs │ │ │ └── SongSelect │ │ │ ├── LLinSongSelect.cs │ │ │ └── MvisBeatmapDetailArea.cs │ └── SystemIntegration │ │ ├── DBus │ │ └── DBusIntegration.cs │ │ ├── Media │ │ ├── IMediaSource.cs │ │ ├── IPlatformImpl.cs │ │ ├── MediaIntegration.cs │ │ ├── Platform │ │ │ ├── LinuxPlatformImpl.cs │ │ │ └── WindowsPlatformImpl.cs │ │ └── Source │ │ │ ├── FallbackMediaSource.cs │ │ │ └── OsuMediaSource.cs │ │ ├── Mpris │ │ └── MprisDBusService.cs.bak │ │ ├── Notifications │ │ ├── INotificationImpl.cs │ │ ├── Platform │ │ │ └── LinuxNotificationImpl.cs │ │ └── SystemNotificationIntegration.cs │ │ └── Theme │ │ ├── ColorScheme.cs │ │ ├── IPlatformThemeImpl.cs │ │ ├── Platform │ │ ├── LinuxThemeImpl.cs │ │ ├── MfosuThemeImpl.cs │ │ └── WindowsThemeImpl.cs │ │ └── SystemThemeIntegration.cs ├── Graphics │ ├── AboutHikariiiDropdownContainer.cs │ ├── BasicDropdownContainer.cs │ ├── IconButton.cs │ ├── LoopingContainer.cs │ ├── RandomBeatmapBackground.cs │ └── Settings │ │ ├── DangerousZone.cs │ │ ├── MfSettings.cs │ │ ├── Sections │ │ ├── DBusSettings.cs │ │ ├── ExperimentalSettings.cs │ │ ├── GeneralHikariiiSettingsSection.cs │ │ ├── HikariiiSettingsSubPanel.cs │ │ ├── LinuxSection.cs │ │ ├── LinuxSettings.cs │ │ └── MfMainSection.cs │ │ └── SettingsTextBoxWithIndicator.cs ├── HikariiiAction.cs ├── HikariiiPlayerRuleset.cs ├── Localisation │ └── LLin │ │ ├── LLinBaseStrings.cs │ │ ├── LLinGenericStrings.cs │ │ ├── LLinPluginNameString.cs │ │ └── Plugins │ │ ├── CloudMusicStrings.cs │ │ ├── CollectionStrings.cs │ │ ├── StpStrings.cs │ │ └── YaspStrings.cs ├── Logging.cs ├── Textures │ ├── Flappy.png │ ├── FlappyDon │ │ ├── bg.png │ │ ├── gameover.png │ │ ├── ground.png │ │ ├── message.png │ │ ├── pipe.png │ │ ├── redbird-downflap.png │ │ ├── redbird-midflap.png │ │ └── redbird-upflap.png │ ├── Fractal.png │ ├── MvisPluginSandbox │ │ └── SandboxPanel.png │ ├── Numbers.png │ ├── Vis.png │ ├── Visualizer │ │ └── particle.png │ └── ruleset.png ├── osu.Game.Rulesets.Hikariii.csproj └── ppyStuffs │ ├── Beatmaps │ └── IGPlayerBeatmapConverter.cs │ ├── IGPlayerDifficultyCalculator.cs │ ├── IGPlayerInputManager.cs │ ├── LICENCE │ ├── Mods │ └── IGPlayerModAutoplay.cs │ ├── Objects │ ├── Drawables │ │ └── DrawableIGPlayerHitObject.cs │ └── HikariiiPlayerHitObject.cs │ ├── README.md │ ├── Replays │ ├── IGPlayerAutoGenerator.cs │ ├── IGPlayerFramedReplayInputHandler.cs │ └── IGPlayerReplayFrame.cs │ ├── UI │ ├── DrawableIGPlayerRuleset.cs │ └── IGPlayerPlayfield.cs │ └── osu │ └── TrianglesV2Copy.cs ├── osu.Game.Rulesets.IGPlayer.sln ├── osu.Game.Rulesets.IGPlayer.sln.DotSettings ├── package.sh └── upstream_assets ├── LICENCE ├── README.md └── osu.Android.props /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.osu.Game.Rulesets.IGPlayer/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/.idea/.idea.osu.Game.Rulesets.IGPlayer/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.osu.Game.Rulesets.IGPlayer/.idea/.name: -------------------------------------------------------------------------------- 1 | osu.Game.Rulesets.IGPlayer -------------------------------------------------------------------------------- /.idea/.idea.osu.Game.Rulesets.IGPlayer/.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/.idea/.idea.osu.Game.Rulesets.IGPlayer/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/.idea.osu.Game.Rulesets.IGPlayer/.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/.idea/.idea.osu.Game.Rulesets.IGPlayer/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/.idea.osu.Game.Rulesets.IGPlayer/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/.idea/.idea.osu.Game.Rulesets.IGPlayer/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.osu.Game.Rulesets.IGPlayer/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/.idea/.idea.osu.Game.Rulesets.IGPlayer/.idea/vcs.xml -------------------------------------------------------------------------------- /BuildHikariii.Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/BuildHikariii.Android/AndroidManifest.xml -------------------------------------------------------------------------------- /BuildHikariii.Android/BuildHikariii.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/BuildHikariii.Android/BuildHikariii.Android.csproj -------------------------------------------------------------------------------- /BuildHikariii.Android/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/BuildHikariii.Android/Class1.cs -------------------------------------------------------------------------------- /BuildHikariii.Windows/BuildHikariii.Windows.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/BuildHikariii.Windows/BuildHikariii.Windows.csproj -------------------------------------------------------------------------------- /BuildHikariii.Windows/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/BuildHikariii.Windows/Class1.cs -------------------------------------------------------------------------------- /BuildHikariii/BuildHikariii.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/BuildHikariii/BuildHikariii.csproj -------------------------------------------------------------------------------- /BuildHikariii/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/BuildHikariii/Class1.cs -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LICENCE -------------------------------------------------------------------------------- /LLin.OSIntegrations/DBusXml/Handler/org.mpris.MediaPlayer2.Player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/DBusXml/Handler/org.mpris.MediaPlayer2.Player.xml -------------------------------------------------------------------------------- /LLin.OSIntegrations/DBusXml/Handler/org.mpris.MediaPlayer2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/DBusXml/Handler/org.mpris.MediaPlayer2.xml -------------------------------------------------------------------------------- /LLin.OSIntegrations/DBusXml/Handler/xyz.nifeather.llin.greeter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/DBusXml/Handler/xyz.nifeather.llin.greeter.xml -------------------------------------------------------------------------------- /LLin.OSIntegrations/DBusXml/Proxy/org.freedesktop.DBus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/DBusXml/Proxy/org.freedesktop.DBus.xml -------------------------------------------------------------------------------- /LLin.OSIntegrations/DBusXml/Proxy/org.freedesktop.Notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/DBusXml/Proxy/org.freedesktop.Notifications.xml -------------------------------------------------------------------------------- /LLin.OSIntegrations/DBusXml/Proxy/org.freedesktop.portal.Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/DBusXml/Proxy/org.freedesktop.portal.Settings.xml -------------------------------------------------------------------------------- /LLin.OSIntegrations/LLin.OSIntegrations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/LLin.OSIntegrations.csproj -------------------------------------------------------------------------------- /LLin.OSIntegrations/Linux/DBus/DBusSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/Linux/DBus/DBusSession.cs -------------------------------------------------------------------------------- /LLin.OSIntegrations/Linux/DBus/Services/DBusAccess/DBusAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/Linux/DBus/Services/DBusAccess/DBusAccess.cs -------------------------------------------------------------------------------- /LLin.OSIntegrations/Linux/DBus/Services/DBusAccess/DBusProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/Linux/DBus/Services/DBusAccess/DBusProxy.cs -------------------------------------------------------------------------------- /LLin.OSIntegrations/Linux/DBus/Services/FreedesktopNotificationsAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/Linux/DBus/Services/FreedesktopNotificationsAccessor.cs -------------------------------------------------------------------------------- /LLin.OSIntegrations/Linux/DBus/Services/FreedesktopSettingsAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/Linux/DBus/Services/FreedesktopSettingsAccessor.cs -------------------------------------------------------------------------------- /LLin.OSIntegrations/Linux/DBus/Services/Greeter/Greet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/Linux/DBus/Services/Greeter/Greet.cs -------------------------------------------------------------------------------- /LLin.OSIntegrations/Linux/DBus/Services/Greeter/GreeterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/Linux/DBus/Services/Greeter/GreeterService.cs -------------------------------------------------------------------------------- /LLin.OSIntegrations/Linux/DBus/Services/Mpris/MprisPlayerControllerImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/Linux/DBus/Services/Mpris/MprisPlayerControllerImpl.cs -------------------------------------------------------------------------------- /LLin.OSIntegrations/Linux/DBus/Services/Mpris/MprisPlayerImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/Linux/DBus/Services/Mpris/MprisPlayerImpl.cs -------------------------------------------------------------------------------- /LLin.OSIntegrations/Linux/DBus/Services/Mpris/MprisService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/Linux/DBus/Services/Mpris/MprisService.cs -------------------------------------------------------------------------------- /LLin.OSIntegrations/Linux/DBus/Services/Mpris/MprisStatusStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/Linux/DBus/Services/Mpris/MprisStatusStrings.cs -------------------------------------------------------------------------------- /LLin.OSIntegrations/Windows/WindowsMediaIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/LLin.OSIntegrations/Windows/WindowsMediaIntegration.cs -------------------------------------------------------------------------------- /M.Resources/Documents/releaseNote.md: -------------------------------------------------------------------------------- 1 | 正在计划恢复更新... -------------------------------------------------------------------------------- /M.Resources/Fonts/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/M.Resources/Fonts/Font.cs -------------------------------------------------------------------------------- /M.Resources/Localisation/LLin/BaseStrings.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/M.Resources/Localisation/LLin/BaseStrings.zh.resx -------------------------------------------------------------------------------- /M.Resources/Localisation/LLin/GenericStrings.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/M.Resources/Localisation/LLin/GenericStrings.zh.resx -------------------------------------------------------------------------------- /M.Resources/Localisation/LLin/LLinPluginNameStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/M.Resources/Localisation/LLin/LLinPluginNameStrings.resx -------------------------------------------------------------------------------- /M.Resources/Localisation/LLin/LLinPluginNameStrings.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/M.Resources/Localisation/LLin/LLinPluginNameStrings.zh.resx -------------------------------------------------------------------------------- /M.Resources/Localisation/LLin/Plugins/CloudMusicStrings.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/M.Resources/Localisation/LLin/Plugins/CloudMusicStrings.zh.resx -------------------------------------------------------------------------------- /M.Resources/Localisation/LLin/Plugins/CollectionStrings.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/M.Resources/Localisation/LLin/Plugins/CollectionStrings.zh.resx -------------------------------------------------------------------------------- /M.Resources/Localisation/LLin/Plugins/StpStrings.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/M.Resources/Localisation/LLin/Plugins/StpStrings.zh.resx -------------------------------------------------------------------------------- /M.Resources/Localisation/LLin/Plugins/YaspStrings.zh.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/M.Resources/Localisation/LLin/Plugins/YaspStrings.zh.resx -------------------------------------------------------------------------------- /M.Resources/M.Resources.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/M.Resources/M.Resources.csproj -------------------------------------------------------------------------------- /M.Resources/MResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/M.Resources/MResources.cs -------------------------------------------------------------------------------- /M.Resources/Textures/Icons/Hexacons/aboutMF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/M.Resources/Textures/Icons/Hexacons/aboutMF.png -------------------------------------------------------------------------------- /M.Resources/Textures/Icons/Hexacons/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/M.Resources/Textures/Icons/Hexacons/time.png -------------------------------------------------------------------------------- /M.Resources/Textures/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/M.Resources/Textures/circle.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/README.md -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii.Tests.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii.Tests.Android/MainActivity.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii.Tests.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii.Tests.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii.Tests.Android/osu.Game.Rulesets.Hikariii.Tests.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii.Tests.Android/osu.Game.Rulesets.Hikariii.Tests.Android.csproj -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii.Tests/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii.Tests/.vscode/launch.json -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii.Tests/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii.Tests/.vscode/tasks.json -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii.Tests/HikariiiTestBrowser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii.Tests/HikariiiTestBrowser.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii.Tests/TestLoopingContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii.Tests/TestLoopingContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii.Tests/TestSceneOsuGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii.Tests/TestSceneOsuGame.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii.Tests/TestScenePlayerScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii.Tests/TestScenePlayerScreen.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii.Tests/VisualTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii.Tests/VisualTestRunner.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii.Tests/osu.Game.Rulesets.Hikariii.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii.Tests/osu.Game.Rulesets.Hikariii.Tests.csproj -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Configuration/MConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Configuration/MConfigManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelBeatmapDownloadTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelBeatmapDownloadTracker.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelBeatmapModelDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelBeatmapModelDownloader.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelUtils/AccelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelUtils/AccelExtensions.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelUtils/ChimuExtensionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelUtils/ChimuExtensionHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelUtils/ExtensionHandlerStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelUtils/ExtensionHandlerStore.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelUtils/IExtensionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelUtils/IExtensionHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelUtils/NumberExtensionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelUtils/NumberExtensionHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelUtils/ProcessResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelUtils/ProcessResult.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelUtils/SayoExtensionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/AccelUtils/SayoExtensionHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Extensions/AccelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Extensions/AccelExtensions.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Extensions/ChimuExtensionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Extensions/ChimuExtensionHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Extensions/IExtensionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Extensions/IExtensionHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Extensions/NumberExtensionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Extensions/NumberExtensionHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Extensions/SayoExtensionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Extensions/SayoExtensionHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Graphics/AccelDownloadButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Graphics/AccelDownloadButton.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Graphics/AccelDownloadProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Graphics/AccelDownloadProgressBar.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Graphics/AccelOptionContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/DownloadAccel/Graphics/AccelOptionContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/FeatureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/FeatureManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/ListenerLoader/AbstractInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/ListenerLoader/AbstractInjector.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Handlers/HikariiiFeatureBoxListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Handlers/HikariiiFeatureBoxListener.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Handlers/PreviewTrackHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Handlers/PreviewTrackHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Handlers/ScreenHandlerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Handlers/ScreenHandlerManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Handlers/ScreenHandlers/AbstractScreenHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Handlers/ScreenHandlers/AbstractScreenHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Handlers/ScreenHandlers/GamePlayerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Handlers/ScreenHandlers/GamePlayerHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Handlers/ScreenHandlers/NewSongSelectHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Handlers/ScreenHandlers/NewSongSelectHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Handlers/SentryLoggerDisabler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Handlers/SentryLoggerDisabler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/ListenerLoader/ListenerLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/ListenerLoader/ListenerLoader.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Utils/HandlerExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/ListenerLoader/Utils/HandlerExtension.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Extensions/APIBeatmapSetExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Extensions/APIBeatmapSetExtension.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/AudioControlRequestDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/AudioControlRequestDialog.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/EnterExitAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/EnterExitAnimation.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/LLinBottombarPaddingIndicatorMaybe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/LLinBottombarPaddingIndicatorMaybe.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/PluginSidebarPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/PluginSidebarPage.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SettingsItems/SettingsEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SettingsItems/SettingsEntry.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/ISidebarContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/ISidebarContent.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/PluginOptionsContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/PluginOptionsContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/PluginsPage/PluginPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/PluginsPage/PluginPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/PluginsPage/PluginRemoveConfirmDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/PluginsPage/PluginRemoveConfirmDialog.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/PluginsPage/PluginsSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/PluginsPage/PluginsSection.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/ISettingsItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/ISettingsItem.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/PlaceHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/PlaceHolder.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsEnumPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsEnumPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsListPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsListPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsPieceBasePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsPieceBasePanel.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsSeparatorPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsSeparatorPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsSlider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsSliderPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsSliderPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsStringPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsStringPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsTextBoxPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsTextBoxPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsTogglePiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Items/SettingsTogglePiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/PlayerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/PlayerSettings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Sections/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Settings/Sections/Section.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/SidebarPluginsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/SidebarPluginsPage.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/SongSelectPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/SongSelectPage.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Tabs/HeaderTabItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Tabs/HeaderTabItem.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Tabs/OptionButtonFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Tabs/OptionButtonFlow.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Tabs/TabControlPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Graphics/SideBar/Tabs/TabControlPosition.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Input/InputHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Input/InputHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Interfaces/IImplementLLin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Interfaces/IImplementLLin.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Interfaces/Plugins/IFunctionBarProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Interfaces/Plugins/IFunctionBarProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Interfaces/Plugins/IFunctionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Interfaces/Plugins/IFunctionProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Interfaces/Plugins/IProvideAudioControlPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Interfaces/Plugins/IProvideAudioControlPlugin.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Interfaces/Plugins/LLinPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Interfaces/Plugins/LLinPlugin.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/BeatmapBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/BeatmapBackground.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/BeatmapCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/BeatmapCover.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/BeatmapHashResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/BeatmapHashResolver.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/BeatmapMetadataExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/BeatmapMetadataExtension.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/BgTrianglesContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/BgTrianglesContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/BlockMouseBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/BlockMouseBox.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/Flash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/Flash.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/HikariiiBeatSyncProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/HikariiiBeatSyncProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/HikariiiSamplePlaybackAntiDisabler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/HikariiiSamplePlaybackAntiDisabler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/Indicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/Indicator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/LLinDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/LLinDialog.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/LLinModRateAdjust.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/LLinModRateAdjust.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/LoadingIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/LoadingIndicator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/PlayerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/PlayerInfo.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/PluginProgressNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/PluginProgressNotification.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/PluginResolvers/LLinPluginResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/PluginResolvers/LLinPluginResolver.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/PluginResolvers/MvisPluginResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/PluginResolvers/MvisPluginResolver.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Misc/ProgressState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Misc/ProgressState.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/BottomBar/Buttons/BottomBarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/BottomBar/Buttons/BottomBarButton.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/BottomBar/Buttons/BottomBarSwitchButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/BottomBar/Buttons/BottomBarSwitchButton.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/BottomBar/Buttons/SongProgressButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/BottomBar/Buttons/SongProgressButton.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/BottomBar/SongProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/BottomBar/SongProgressBar.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/BottomBar/StandardBottomBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/BottomBar/StandardBottomBar.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/BottomBar/StandardBottomBarProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/BottomBar/StandardBottomBarProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Config/LyricConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Config/LyricConfigManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/APILyricRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/APILyricRequest.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/APISearchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/APISearchRequest.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/LevenshteinDistance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/LevenshteinDistance.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/LyricProperties/IPropertyProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/LyricProperties/IPropertyProcessor.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/LyricProperties/Processors/AuthorProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/LyricProperties/Processors/AuthorProcessor.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/LyricProperties/Processors/TimeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/LyricProperties/Processors/TimeProcessor.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/LyricProperties/PropertyProcessorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/LyricProperties/PropertyProcessorManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/OnlineLyrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/OnlineLyrics.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/RequestFinishMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/RequestFinishMeta.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/SearchOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/SearchOption.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/UserDefinitionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Helper/UserDefinitionHelper.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/LyricPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/LyricPlugin.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/LyricPluginProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/LyricPluginProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/APILyricResponseRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/APILyricResponseRoot.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/APISearchResponseRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/APISearchResponseRoot.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/APISearchResultInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/APISearchResultInfo.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/APISongInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/APISongInfo.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/ArtistInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/ArtistInfo.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/Lyric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/Lyric.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/LyricInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/LyricInfo.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/Mapping/BeatmapLyricMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/Mapping/BeatmapLyricMapping.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/Mapping/LyricMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Misc/Mapping/LyricMappings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Graphic/DrawableLyric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Graphic/DrawableLyric.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Graphic/DummyDrawableLyric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Graphic/DummyDrawableLyric.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Graphic/EditableLyricPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Graphic/EditableLyricPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Graphic/LyricPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Graphic/LyricPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Graphic/Toolbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Graphic/Toolbox.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Graphic/TrackTimeIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Graphic/TrackTimeIndicator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/LyricFunctionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/LyricFunctionProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/LyricSidebarPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/LyricSidebarPage.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Screens/LyricScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Screens/LyricScreen.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Screens/LyricViewScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Screens/LyricViewScreen.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Screens/SidebarScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/Screens/SidebarScreen.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/SidebarScreenStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/Sidebar/SidebarScreenStack.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/UI/LyricLineHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/UI/LyricLineHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/UI/SettingsAnchorPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/CloudMusic/UI/SettingsAnchorPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Chooser/RandomChooser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Chooser/RandomChooser.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Chooser/SequenceChooser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Chooser/SequenceChooser.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/CollectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/CollectionHelper.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/CollectionHelperProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/CollectionHelperProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Config/CollectionHelperConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Config/CollectionHelperConfigManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/IBeatmapChooser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/IBeatmapChooser.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Sidebar/BeatmapList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Sidebar/BeatmapList.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Sidebar/BeatmapPiece.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Sidebar/BeatmapPiece.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Sidebar/CollectionFunctionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Sidebar/CollectionFunctionProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Sidebar/CollectionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Sidebar/CollectionInfo.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Sidebar/CollectionPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Sidebar/CollectionPanel.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Sidebar/CollectionPluginPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Sidebar/CollectionPluginPage.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Sidebar/TooltipContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Sidebar/TooltipContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Utils/BeatmapInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Collection/Utils/BeatmapInfoExtensions.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/LICENSE -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Resources/Samples/die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Resources/Samples/die.wav -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Resources/Samples/flap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Resources/Samples/flap.wav -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Resources/Samples/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Resources/Samples/hit.wav -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Resources/Samples/point.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Resources/Samples/point.wav -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Resources/Shaders/sh_RulesetUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Resources/Shaders/sh_RulesetUtils.h -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Configuration/SandboxRulesetConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Configuration/SandboxRulesetConfigManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Extensions/MathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Extensions/MathExtensions.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Extensions/OpenSimplexNoise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Extensions/OpenSimplexNoise.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Extensions/ProjectileExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Extensions/ProjectileExtensions.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Graphics/ContentFitContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Graphics/ContentFitContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Graphics/InnerShadowContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Graphics/InnerShadowContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/SandboxScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/SandboxScreen.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/SandboxScreenWithSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/SandboxScreenWithSettings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/LayoutController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/LayoutController.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/DrawableVisualizerLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/DrawableVisualizerLayout.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/EmptyLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/EmptyLayout.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/TypeA/CircularBeatmapLogo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/TypeA/CircularBeatmapLogo.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/TypeA/TypeAVisualizerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/TypeA/TypeAVisualizerController.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/TypeA/UpdateableBeatmapBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/TypeA/UpdateableBeatmapBackground.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/TypeALayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/TypeALayout.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/TypeB/TypeBVisualizerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/TypeB/TypeBVisualizerController.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/TypeBLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Layouts/TypeBLayout.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/MusicHelpers/CurrentBeatmapProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/MusicHelpers/CurrentBeatmapProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/MusicHelpers/CurrentRateContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/MusicHelpers/CurrentRateContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/MusicHelpers/MusicAmplitudesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/MusicHelpers/MusicAmplitudesProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/MusicHelpers/MusicIntensityController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/MusicHelpers/MusicIntensityController.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/MusicHelpers/RateAdjustableContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/MusicHelpers/RateAdjustableContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Particles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Particles.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/ParticlesDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/ParticlesDrawable.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Settings/BackgroundSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Settings/BackgroundSection.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Settings/LayoutSettingsSubsection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Settings/LayoutSettingsSubsection.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Settings/ParticleSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Settings/ParticleSettings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Settings/TrackSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Settings/TrackSection.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Settings/VisualizerSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Settings/VisualizerSection.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/VisualizerSettingsTip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/VisualizerSettingsTip.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/Circular/BasicMusicVisualizerDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/Circular/BasicMusicVisualizerDrawable.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/Circular/DotsMusicVisualizerDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/Circular/DotsMusicVisualizerDrawable.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/Circular/FallMusicVisualizerDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/Circular/FallMusicVisualizerDrawable.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/Circular/RoundedMusicVisualizerDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/Circular/RoundedMusicVisualizerDrawable.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/CircularMusicVisualizerDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/CircularMusicVisualizerDrawable.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/Linear/BasicLinearMusicVisualizerDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/Linear/BasicLinearMusicVisualizerDrawable.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/Linear/RoundedLinearMusicVisualizerDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/Linear/RoundedLinearMusicVisualizerDrawable.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/LinearMusicVisualizerDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/LinearMusicVisualizerDrawable.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/MusicVisualizerDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/Components/Visualizers/MusicVisualizerDrawable.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/VisualizerScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/Screens/Visualizer/VisualizerScreen.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/InteractiveContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/InteractiveContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/Overlays/SandboxCheckbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/Overlays/SandboxCheckbox.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/Overlays/SandboxOverlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/Overlays/SandboxOverlay.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/SandboxPlayfield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/SandboxPlayfield.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/Settings/ColourPickerDropdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/Settings/ColourPickerDropdown.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/Settings/SandboxSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/Settings/SandboxSettings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/Settings/SandboxSettingsSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/Settings/SandboxSettingsSection.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/Settings/SettingsDropdownContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/Settings/SettingsDropdownContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/StoryboardContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/StoryboardContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/SupportButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/SupportButton.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/TrackController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/RulesetComponents/UI/TrackController.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/SandboxPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/SandboxPanel.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/SandboxPanelProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/SandboxPanelProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/Flappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/Flappy.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/bg.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/gameover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/gameover.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/ground.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/message.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/pipe.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/redbird-downflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/redbird-downflap.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/redbird-midflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/redbird-midflap.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/redbird-upflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/FlappyDon/redbird-upflap.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/Fractal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/Fractal.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/MvisPluginSandbox/SandboxPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/MvisPluginSandbox/SandboxPanel.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/Numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/Numbers.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/Vis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/Vis.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/Visualizer/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/Visualizer/particle.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/ruleset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/Textures/ruleset.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/lazer-sandbox-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/SandboxToPanel/lazer-sandbox-README.md -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Storyboard/BackgroundStoryBoardLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Storyboard/BackgroundStoryBoardLoader.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Storyboard/Config/SBLoaderConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Storyboard/Config/SBLoaderConfigManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Storyboard/Storyboard/BackgroundStoryboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Storyboard/Storyboard/BackgroundStoryboard.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Storyboard/StoryboardSupportProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Storyboard/StoryboardSupportProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Yasp/Config/ExamplePluginConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Yasp/Config/ExamplePluginConfigManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Yasp/Panels/ClassicPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Yasp/Panels/ClassicPanel.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Yasp/Panels/CoverIIPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Yasp/Panels/CoverIIPanel.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Yasp/Panels/IPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Yasp/Panels/IPanel.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Yasp/Panels/NsiPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Yasp/Panels/NsiPanel.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Yasp/YaspPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Yasp/YaspPlugin.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Yasp/YaspProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Bundle/Yasp/YaspProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Config/DefaultPluginConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Config/DefaultPluginConfigManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Config/IPluginConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Config/IPluginConfigManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Config/PluginConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Config/PluginConfigManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Config/PluginSettingsSubSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Config/PluginSettingsSubSection.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Config/SidebarSettingsSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Config/SidebarSettingsSection.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/DialogOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/DialogOption.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/DummyBase/ColourPreviewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/DummyBase/ColourPreviewer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/DummyBase/DummyBasePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/DummyBase/DummyBasePlugin.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/DummyBase/DummyBasePluginProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/DummyBase/DummyBasePluginProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/FallbackFunctionBar/FallbackFunctionBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/FallbackFunctionBar/FallbackFunctionBar.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/FallbackFunctionBar/FallbackFunctionBarProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/FallbackFunctionBar/FallbackFunctionBarProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/FallbackFunctionBar/SimpleBarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/FallbackFunctionBar/SimpleBarButton.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/FallbackFunctionBar/SongProgressButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/FallbackFunctionBar/SongProgressButton.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/FallbackFunctionBar/ToggleableBarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/FallbackFunctionBar/ToggleableBarButton.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/ForwardingDummyConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/ForwardingDummyConfigManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/OsuAudio/OsuAudioPluginProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/OsuAudio/OsuAudioPluginProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/OsuAudio/OsuMusicControllerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Internal/OsuAudio/OsuMusicControllerWrapper.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/LLinPluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/LLinPluginManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/LLinPluginProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/LLinPluginProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/PluginDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/PluginDescription.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/PluginKeybind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/PluginKeybind.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/PluginStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/PluginStore.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Types/BindableControlledPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Types/BindableControlledPlugin.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Types/FakeButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Types/FakeButton.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Types/ToggleableButtonWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Plugins/Types/ToggleableButtonWrapper.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/CustomColourProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/CustomColourProvider.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/InPlayerUserActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/InPlayerUserActivity.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/InputManagerTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/InputManagerTracker.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/LLinLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/LLinLoader.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/LLinMediaSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/LLinMediaSource.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/LLinScreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/LLinScreen.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/MfBgTriangles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/MfBgTriangles.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/SessionPluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Screens/LLin/SessionPluginManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Screens/SongSelect/LLinSongSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Screens/SongSelect/LLinSongSelect.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/Player/Screens/SongSelect/MvisBeatmapDetailArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/Player/Screens/SongSelect/MvisBeatmapDetailArea.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/DBus/DBusIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/DBus/DBusIntegration.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Media/IMediaSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Media/IMediaSource.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Media/IPlatformImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Media/IPlatformImpl.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Media/MediaIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Media/MediaIntegration.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Media/Platform/LinuxPlatformImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Media/Platform/LinuxPlatformImpl.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Media/Platform/WindowsPlatformImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Media/Platform/WindowsPlatformImpl.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Media/Source/FallbackMediaSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Media/Source/FallbackMediaSource.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Media/Source/OsuMediaSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Media/Source/OsuMediaSource.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Mpris/MprisDBusService.cs.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Mpris/MprisDBusService.cs.bak -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Notifications/INotificationImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Notifications/INotificationImpl.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Notifications/Platform/LinuxNotificationImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Notifications/Platform/LinuxNotificationImpl.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Notifications/SystemNotificationIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Notifications/SystemNotificationIntegration.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Theme/ColorScheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Theme/ColorScheme.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Theme/IPlatformThemeImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Theme/IPlatformThemeImpl.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Theme/Platform/LinuxThemeImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Theme/Platform/LinuxThemeImpl.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Theme/Platform/MfosuThemeImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Theme/Platform/MfosuThemeImpl.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Theme/Platform/WindowsThemeImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Theme/Platform/WindowsThemeImpl.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Theme/SystemThemeIntegration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Features/SystemIntegration/Theme/SystemThemeIntegration.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/AboutHikariiiDropdownContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/AboutHikariiiDropdownContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/BasicDropdownContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/BasicDropdownContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/IconButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/IconButton.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/LoopingContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/LoopingContainer.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/RandomBeatmapBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/RandomBeatmapBackground.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/Settings/DangerousZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/Settings/DangerousZone.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/Settings/MfSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/Settings/MfSettings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/Settings/Sections/DBusSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/Settings/Sections/DBusSettings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/Settings/Sections/ExperimentalSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/Settings/Sections/ExperimentalSettings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/Settings/Sections/GeneralHikariiiSettingsSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/Settings/Sections/GeneralHikariiiSettingsSection.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/Settings/Sections/HikariiiSettingsSubPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/Settings/Sections/HikariiiSettingsSubPanel.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/Settings/Sections/LinuxSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/Settings/Sections/LinuxSection.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/Settings/Sections/LinuxSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/Settings/Sections/LinuxSettings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/Settings/Sections/MfMainSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/Settings/Sections/MfMainSection.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Graphics/Settings/SettingsTextBoxWithIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Graphics/Settings/SettingsTextBoxWithIndicator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/HikariiiAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/HikariiiAction.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/HikariiiPlayerRuleset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/HikariiiPlayerRuleset.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Localisation/LLin/LLinBaseStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Localisation/LLin/LLinBaseStrings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Localisation/LLin/LLinGenericStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Localisation/LLin/LLinGenericStrings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Localisation/LLin/LLinPluginNameString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Localisation/LLin/LLinPluginNameString.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Localisation/LLin/Plugins/CloudMusicStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Localisation/LLin/Plugins/CloudMusicStrings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Localisation/LLin/Plugins/CollectionStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Localisation/LLin/Plugins/CollectionStrings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Localisation/LLin/Plugins/StpStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Localisation/LLin/Plugins/StpStrings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Localisation/LLin/Plugins/YaspStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Localisation/LLin/Plugins/YaspStrings.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Logging.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/Flappy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/Flappy.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/FlappyDon/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/FlappyDon/bg.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/FlappyDon/gameover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/FlappyDon/gameover.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/FlappyDon/ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/FlappyDon/ground.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/FlappyDon/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/FlappyDon/message.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/FlappyDon/pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/FlappyDon/pipe.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/FlappyDon/redbird-downflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/FlappyDon/redbird-downflap.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/FlappyDon/redbird-midflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/FlappyDon/redbird-midflap.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/FlappyDon/redbird-upflap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/FlappyDon/redbird-upflap.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/Fractal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/Fractal.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/MvisPluginSandbox/SandboxPanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/MvisPluginSandbox/SandboxPanel.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/Numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/Numbers.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/Vis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/Vis.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/Visualizer/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/Visualizer/particle.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/Textures/ruleset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/Textures/ruleset.png -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/osu.Game.Rulesets.Hikariii.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/osu.Game.Rulesets.Hikariii.csproj -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/ppyStuffs/Beatmaps/IGPlayerBeatmapConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/ppyStuffs/Beatmaps/IGPlayerBeatmapConverter.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/ppyStuffs/IGPlayerDifficultyCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/ppyStuffs/IGPlayerDifficultyCalculator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/ppyStuffs/IGPlayerInputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/ppyStuffs/IGPlayerInputManager.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/ppyStuffs/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/ppyStuffs/LICENCE -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/ppyStuffs/Mods/IGPlayerModAutoplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/ppyStuffs/Mods/IGPlayerModAutoplay.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/ppyStuffs/Objects/Drawables/DrawableIGPlayerHitObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/ppyStuffs/Objects/Drawables/DrawableIGPlayerHitObject.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/ppyStuffs/Objects/HikariiiPlayerHitObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/ppyStuffs/Objects/HikariiiPlayerHitObject.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/ppyStuffs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/ppyStuffs/README.md -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/ppyStuffs/Replays/IGPlayerAutoGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/ppyStuffs/Replays/IGPlayerAutoGenerator.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/ppyStuffs/Replays/IGPlayerFramedReplayInputHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/ppyStuffs/Replays/IGPlayerFramedReplayInputHandler.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/ppyStuffs/Replays/IGPlayerReplayFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/ppyStuffs/Replays/IGPlayerReplayFrame.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/ppyStuffs/UI/DrawableIGPlayerRuleset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/ppyStuffs/UI/DrawableIGPlayerRuleset.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/ppyStuffs/UI/IGPlayerPlayfield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/ppyStuffs/UI/IGPlayerPlayfield.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.Hikariii/ppyStuffs/osu/TrianglesV2Copy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.Hikariii/ppyStuffs/osu/TrianglesV2Copy.cs -------------------------------------------------------------------------------- /osu.Game.Rulesets.IGPlayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.IGPlayer.sln -------------------------------------------------------------------------------- /osu.Game.Rulesets.IGPlayer.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/osu.Game.Rulesets.IGPlayer.sln.DotSettings -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/package.sh -------------------------------------------------------------------------------- /upstream_assets/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/upstream_assets/LICENCE -------------------------------------------------------------------------------- /upstream_assets/README.md: -------------------------------------------------------------------------------- 1 | 来自上游的一些文件 -------------------------------------------------------------------------------- /upstream_assets/osu.Android.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MATRIX-feather/LLin/HEAD/upstream_assets/osu.Android.props --------------------------------------------------------------------------------