1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 11:37:28 +08:00

Add back unstable rate display

This commit is contained in:
Bartłomiej Dach 2020-08-27 20:46:49 +02:00
parent ea1f07e311
commit 43d6d2b2e8
3 changed files with 30 additions and 0 deletions

View File

@ -327,6 +327,16 @@ namespace osu.Game.Rulesets.Mania
}), }),
} }
}, },
new StatisticRow
{
Columns = new[]
{
new StatisticItem(string.Empty, new SimpleStatisticTable(3, new SimpleStatisticItem[]
{
new UnstableRate(score.HitEvents)
}))
}
}
}; };
} }

View File

@ -222,6 +222,16 @@ namespace osu.Game.Rulesets.Osu
}), }),
} }
}, },
new StatisticRow
{
Columns = new[]
{
new StatisticItem(string.Empty, new SimpleStatisticTable(3, new SimpleStatisticItem[]
{
new UnstableRate(timedHitEvents)
}))
}
}
}; };
} }
} }

View File

@ -178,6 +178,16 @@ namespace osu.Game.Rulesets.Taiko
}), }),
} }
}, },
new StatisticRow
{
Columns = new[]
{
new StatisticItem(string.Empty, new SimpleStatisticTable(3, new SimpleStatisticItem[]
{
new UnstableRate(timedHitEvents)
}))
}
}
}; };
} }
} }