1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00

Expose LowestSuccessfulHitResult()

This commit is contained in:
smoogipoo 2020-06-02 23:36:56 +09:00
parent ed5f41ec23
commit a7f8c5935d

View File

@ -48,7 +48,7 @@ namespace osu.Game.Rulesets.Scoring
/// Retrieves the <see cref="HitResult"/> with the largest hit window that produces a successful hit.
/// </summary>
/// <returns>The lowest allowed successful <see cref="HitResult"/>.</returns>
protected HitResult LowestSuccessfulHitResult()
public HitResult LowestSuccessfulHitResult()
{
for (var result = HitResult.Meh; result <= HitResult.Perfect; ++result)
{