1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-07 10:53:05 +08:00

Update Skill.cs

This commit is contained in:
Dark98 2025-01-11 05:49:58 +01:00 committed by GitHub
parent 1e55654ad5
commit 3b845e4792
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,4 +1,4 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System.Collections.Generic;
@ -37,5 +37,10 @@ namespace osu.Game.Rulesets.Difficulty.Skills
/// Returns the calculated difficulty value representing all <see cref="DifficultyHitObject"/>s that have been processed up to this point.
/// </summary>
public abstract double DifficultyValue();
/// <summary>
/// Returns the factor difficulty value representing all <see cref="DifficultyHitObject"/>s that have been processed up to this point.
/// </summary>
public abstract double DifficultyFactor();
}
}