├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── MuseDashInfo+.slnx ├── README.md ├── README_de.md ├── README_es.md ├── README_fr.md ├── README_ja.md ├── README_ko.md ├── README_pt.md ├── README_ru.md ├── README_zh-CN.md ├── README_zh-TW.md ├── src ├── Application │ ├── DependencyInjection │ │ ├── ModServiceConfigurator.cs │ │ ├── PropertyInjectionExtensions.cs │ │ └── SimpleServiceProvider.cs │ └── Services │ │ ├── Global │ │ ├── Assets │ │ │ ├── FontService.cs │ │ │ └── IFontService.cs │ │ ├── Configuration │ │ │ ├── ConfigAccessor.cs │ │ │ ├── ConfigService.cs │ │ │ ├── IConfigAccessor.cs │ │ │ └── IConfigService.cs │ │ ├── Input │ │ │ ├── HotkeyService.cs │ │ │ └── IHotkeyService.cs │ │ ├── Logging │ │ │ ├── ILogger.cs │ │ │ └── Logger.cs │ │ ├── RuntimeData │ │ │ ├── IRuntimeDataStore.cs │ │ │ └── RuntimeDataStore.cs │ │ ├── Stats │ │ │ ├── IStatsSaverService.cs │ │ │ └── StatsSaverService.cs │ │ ├── Text │ │ │ ├── ITextDataService.cs │ │ │ └── TextDataService.cs │ │ ├── UI │ │ │ ├── IPreparationScreenService.cs │ │ │ └── PreparationScreenService.cs │ │ └── Updates │ │ │ ├── IUpdateService.cs │ │ │ └── UpdateService.cs │ │ └── Scoped │ │ ├── Notes │ │ ├── INoteEventService.cs │ │ ├── INoteRecordService.cs │ │ ├── NoteEventService.cs │ │ └── NoteRecordService.cs │ │ ├── Scheduling │ │ ├── IRefreshScheduler.cs │ │ └── RefreshScheduler.cs │ │ ├── Stats │ │ ├── GameStatsService.cs │ │ └── IGameStatsService.cs │ │ ├── Text │ │ ├── ITextObjectService.cs │ │ └── TextObjectService.cs │ │ └── UI │ │ ├── BattleUIService.cs │ │ ├── IBattleUIService.cs │ │ ├── IVictoryScreenService.cs │ │ └── VictoryScreenService.cs ├── Core │ ├── Constants │ │ └── Constants.cs │ ├── Domain │ │ ├── Attributes │ │ │ ├── ConfigCommentEnAttribute.cs │ │ │ └── ConfigCommentZhAttribute.cs │ │ ├── Configs │ │ │ ├── AdvancedConfigs.cs │ │ │ ├── ConfigBase.cs │ │ │ ├── ITextConfig.cs │ │ │ ├── MainConfigs.cs │ │ │ ├── TextFieldLowerLeftConfigs.cs │ │ │ ├── TextFieldLowerRightConfigs.cs │ │ │ ├── TextFieldScoreBelowConfigs.cs │ │ │ ├── TextFieldScoreRightConfigs.cs │ │ │ ├── TextFieldUpperLeftConfigs.cs │ │ │ └── TextFieldUpperRightConfigs.cs │ │ ├── Configuration │ │ │ └── ConfigItem.cs │ │ ├── Enums │ │ │ ├── BattleUIItem.cs │ │ │ ├── CountNoteAction.cs │ │ │ ├── FontType.cs │ │ │ ├── NoteType.cs │ │ │ └── ScoreStyleType.cs │ │ ├── Notes │ │ │ └── NoteRecord.cs │ │ ├── Records │ │ │ ├── CurrentStats.cs │ │ │ ├── HistoryStats.cs │ │ │ ├── MissStats.cs │ │ │ ├── SongRuntimeRecord.cs │ │ │ └── TotalStats.cs │ │ ├── Stats │ │ │ └── StatsData.cs │ │ └── Updates │ │ │ └── VersionInfo.cs │ ├── Infrastructure │ │ ├── Configuration │ │ │ ├── ConfigCommentFormatter.cs │ │ │ └── ConfigVersionControl.cs │ │ └── Serialization │ │ │ └── YamlParser.cs │ └── Utilities │ │ ├── CoroutineUtils.cs │ │ ├── Extensions.cs │ │ └── MusicInfoUtils.cs ├── GlobalUsings.cs ├── MuseDashInfo+.csproj ├── Presentation │ ├── MDIPMod.cs │ ├── ModBuildInfo.cs │ └── Patches │ │ ├── BaseEnemyObjectControllerPatch.cs │ │ ├── BattleEnemyManagerPatch.cs │ │ ├── GameMissPlayPatch.cs │ │ ├── MultHitEnemyControllerPatch.cs │ │ ├── PnlBattlePatch.cs │ │ ├── PnlPreparationPatch.cs │ │ ├── PnlVictoryPatch.cs │ │ └── StatisticsManagerPatch.cs └── Properties │ └── AssemblyInfo.cs └── static ├── Preview1.webp ├── Preview2.webp └── Preview3.webp /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MuseDashInfo+.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/MuseDashInfo+.slnx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/README.md -------------------------------------------------------------------------------- /README_de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/README_de.md -------------------------------------------------------------------------------- /README_es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/README_es.md -------------------------------------------------------------------------------- /README_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/README_fr.md -------------------------------------------------------------------------------- /README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/README_ja.md -------------------------------------------------------------------------------- /README_ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/README_ko.md -------------------------------------------------------------------------------- /README_pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/README_pt.md -------------------------------------------------------------------------------- /README_ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/README_ru.md -------------------------------------------------------------------------------- /README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/README_zh-CN.md -------------------------------------------------------------------------------- /README_zh-TW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/README_zh-TW.md -------------------------------------------------------------------------------- /src/Application/DependencyInjection/ModServiceConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/DependencyInjection/ModServiceConfigurator.cs -------------------------------------------------------------------------------- /src/Application/DependencyInjection/PropertyInjectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/DependencyInjection/PropertyInjectionExtensions.cs -------------------------------------------------------------------------------- /src/Application/DependencyInjection/SimpleServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/DependencyInjection/SimpleServiceProvider.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Assets/FontService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Assets/FontService.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Assets/IFontService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Assets/IFontService.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Configuration/ConfigAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Configuration/ConfigAccessor.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Configuration/ConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Configuration/ConfigService.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Configuration/IConfigAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Configuration/IConfigAccessor.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Configuration/IConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Configuration/IConfigService.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Input/HotkeyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Input/HotkeyService.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Input/IHotkeyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Input/IHotkeyService.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Logging/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Logging/ILogger.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Logging/Logger.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/RuntimeData/IRuntimeDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/RuntimeData/IRuntimeDataStore.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/RuntimeData/RuntimeDataStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/RuntimeData/RuntimeDataStore.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Stats/IStatsSaverService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Stats/IStatsSaverService.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Stats/StatsSaverService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Stats/StatsSaverService.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Text/ITextDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Text/ITextDataService.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Text/TextDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Text/TextDataService.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/UI/IPreparationScreenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/UI/IPreparationScreenService.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/UI/PreparationScreenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/UI/PreparationScreenService.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Updates/IUpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Updates/IUpdateService.cs -------------------------------------------------------------------------------- /src/Application/Services/Global/Updates/UpdateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Global/Updates/UpdateService.cs -------------------------------------------------------------------------------- /src/Application/Services/Scoped/Notes/INoteEventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Scoped/Notes/INoteEventService.cs -------------------------------------------------------------------------------- /src/Application/Services/Scoped/Notes/INoteRecordService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Scoped/Notes/INoteRecordService.cs -------------------------------------------------------------------------------- /src/Application/Services/Scoped/Notes/NoteEventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Scoped/Notes/NoteEventService.cs -------------------------------------------------------------------------------- /src/Application/Services/Scoped/Notes/NoteRecordService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Scoped/Notes/NoteRecordService.cs -------------------------------------------------------------------------------- /src/Application/Services/Scoped/Scheduling/IRefreshScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Scoped/Scheduling/IRefreshScheduler.cs -------------------------------------------------------------------------------- /src/Application/Services/Scoped/Scheduling/RefreshScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Scoped/Scheduling/RefreshScheduler.cs -------------------------------------------------------------------------------- /src/Application/Services/Scoped/Stats/GameStatsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Scoped/Stats/GameStatsService.cs -------------------------------------------------------------------------------- /src/Application/Services/Scoped/Stats/IGameStatsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Scoped/Stats/IGameStatsService.cs -------------------------------------------------------------------------------- /src/Application/Services/Scoped/Text/ITextObjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Scoped/Text/ITextObjectService.cs -------------------------------------------------------------------------------- /src/Application/Services/Scoped/Text/TextObjectService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Scoped/Text/TextObjectService.cs -------------------------------------------------------------------------------- /src/Application/Services/Scoped/UI/BattleUIService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Scoped/UI/BattleUIService.cs -------------------------------------------------------------------------------- /src/Application/Services/Scoped/UI/IBattleUIService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Scoped/UI/IBattleUIService.cs -------------------------------------------------------------------------------- /src/Application/Services/Scoped/UI/IVictoryScreenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Scoped/UI/IVictoryScreenService.cs -------------------------------------------------------------------------------- /src/Application/Services/Scoped/UI/VictoryScreenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Application/Services/Scoped/UI/VictoryScreenService.cs -------------------------------------------------------------------------------- /src/Core/Constants/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Constants/Constants.cs -------------------------------------------------------------------------------- /src/Core/Domain/Attributes/ConfigCommentEnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Attributes/ConfigCommentEnAttribute.cs -------------------------------------------------------------------------------- /src/Core/Domain/Attributes/ConfigCommentZhAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Attributes/ConfigCommentZhAttribute.cs -------------------------------------------------------------------------------- /src/Core/Domain/Configs/AdvancedConfigs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Configs/AdvancedConfigs.cs -------------------------------------------------------------------------------- /src/Core/Domain/Configs/ConfigBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Configs/ConfigBase.cs -------------------------------------------------------------------------------- /src/Core/Domain/Configs/ITextConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Configs/ITextConfig.cs -------------------------------------------------------------------------------- /src/Core/Domain/Configs/MainConfigs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Configs/MainConfigs.cs -------------------------------------------------------------------------------- /src/Core/Domain/Configs/TextFieldLowerLeftConfigs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Configs/TextFieldLowerLeftConfigs.cs -------------------------------------------------------------------------------- /src/Core/Domain/Configs/TextFieldLowerRightConfigs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Configs/TextFieldLowerRightConfigs.cs -------------------------------------------------------------------------------- /src/Core/Domain/Configs/TextFieldScoreBelowConfigs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Configs/TextFieldScoreBelowConfigs.cs -------------------------------------------------------------------------------- /src/Core/Domain/Configs/TextFieldScoreRightConfigs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Configs/TextFieldScoreRightConfigs.cs -------------------------------------------------------------------------------- /src/Core/Domain/Configs/TextFieldUpperLeftConfigs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Configs/TextFieldUpperLeftConfigs.cs -------------------------------------------------------------------------------- /src/Core/Domain/Configs/TextFieldUpperRightConfigs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Configs/TextFieldUpperRightConfigs.cs -------------------------------------------------------------------------------- /src/Core/Domain/Configuration/ConfigItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Configuration/ConfigItem.cs -------------------------------------------------------------------------------- /src/Core/Domain/Enums/BattleUIItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Enums/BattleUIItem.cs -------------------------------------------------------------------------------- /src/Core/Domain/Enums/CountNoteAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Enums/CountNoteAction.cs -------------------------------------------------------------------------------- /src/Core/Domain/Enums/FontType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Enums/FontType.cs -------------------------------------------------------------------------------- /src/Core/Domain/Enums/NoteType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Enums/NoteType.cs -------------------------------------------------------------------------------- /src/Core/Domain/Enums/ScoreStyleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Enums/ScoreStyleType.cs -------------------------------------------------------------------------------- /src/Core/Domain/Notes/NoteRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Notes/NoteRecord.cs -------------------------------------------------------------------------------- /src/Core/Domain/Records/CurrentStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Records/CurrentStats.cs -------------------------------------------------------------------------------- /src/Core/Domain/Records/HistoryStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Records/HistoryStats.cs -------------------------------------------------------------------------------- /src/Core/Domain/Records/MissStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Records/MissStats.cs -------------------------------------------------------------------------------- /src/Core/Domain/Records/SongRuntimeRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Records/SongRuntimeRecord.cs -------------------------------------------------------------------------------- /src/Core/Domain/Records/TotalStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Records/TotalStats.cs -------------------------------------------------------------------------------- /src/Core/Domain/Stats/StatsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Stats/StatsData.cs -------------------------------------------------------------------------------- /src/Core/Domain/Updates/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Domain/Updates/VersionInfo.cs -------------------------------------------------------------------------------- /src/Core/Infrastructure/Configuration/ConfigCommentFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Infrastructure/Configuration/ConfigCommentFormatter.cs -------------------------------------------------------------------------------- /src/Core/Infrastructure/Configuration/ConfigVersionControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Infrastructure/Configuration/ConfigVersionControl.cs -------------------------------------------------------------------------------- /src/Core/Infrastructure/Serialization/YamlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Infrastructure/Serialization/YamlParser.cs -------------------------------------------------------------------------------- /src/Core/Utilities/CoroutineUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Utilities/CoroutineUtils.cs -------------------------------------------------------------------------------- /src/Core/Utilities/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Utilities/Extensions.cs -------------------------------------------------------------------------------- /src/Core/Utilities/MusicInfoUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Core/Utilities/MusicInfoUtils.cs -------------------------------------------------------------------------------- /src/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/GlobalUsings.cs -------------------------------------------------------------------------------- /src/MuseDashInfo+.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/MuseDashInfo+.csproj -------------------------------------------------------------------------------- /src/Presentation/MDIPMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Presentation/MDIPMod.cs -------------------------------------------------------------------------------- /src/Presentation/ModBuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Presentation/ModBuildInfo.cs -------------------------------------------------------------------------------- /src/Presentation/Patches/BaseEnemyObjectControllerPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Presentation/Patches/BaseEnemyObjectControllerPatch.cs -------------------------------------------------------------------------------- /src/Presentation/Patches/BattleEnemyManagerPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Presentation/Patches/BattleEnemyManagerPatch.cs -------------------------------------------------------------------------------- /src/Presentation/Patches/GameMissPlayPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Presentation/Patches/GameMissPlayPatch.cs -------------------------------------------------------------------------------- /src/Presentation/Patches/MultHitEnemyControllerPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Presentation/Patches/MultHitEnemyControllerPatch.cs -------------------------------------------------------------------------------- /src/Presentation/Patches/PnlBattlePatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Presentation/Patches/PnlBattlePatch.cs -------------------------------------------------------------------------------- /src/Presentation/Patches/PnlPreparationPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Presentation/Patches/PnlPreparationPatch.cs -------------------------------------------------------------------------------- /src/Presentation/Patches/PnlVictoryPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Presentation/Patches/PnlVictoryPatch.cs -------------------------------------------------------------------------------- /src/Presentation/Patches/StatisticsManagerPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Presentation/Patches/StatisticsManagerPatch.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /static/Preview1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/static/Preview1.webp -------------------------------------------------------------------------------- /static/Preview2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/static/Preview2.webp -------------------------------------------------------------------------------- /static/Preview3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MDMods/MuseDashInfoPlus/HEAD/static/Preview3.webp --------------------------------------------------------------------------------