mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 14:17:06 +09:00
Strongly type and expose default beatmap information icon implementations for other rulesets
This commit is contained in:
@ -40,13 +40,13 @@ namespace osu.Game.Rulesets.Mania.Beatmaps
|
||||
new BeatmapStatistic
|
||||
{
|
||||
Name = @"Note Count",
|
||||
CreateIcon = () => new BeatmapStatisticSprite("circles"),
|
||||
CreateIcon = () => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Circles),
|
||||
Content = notes.ToString(),
|
||||
},
|
||||
new BeatmapStatistic
|
||||
{
|
||||
Name = @"Hold Note Count",
|
||||
CreateIcon = () => new BeatmapStatisticSprite("sliders"),
|
||||
CreateIcon = () => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Sliders),
|
||||
Content = holdnotes.ToString(),
|
||||
},
|
||||
};
|
||||
|
Reference in New Issue
Block a user