mirror of
https://github.com/ppy/osu.git
synced 2025-01-26 12:45:09 +08:00
Aaand docs again.
This commit is contained in:
parent
1f311cca06
commit
a0bdab9f0d
@ -6,6 +6,9 @@ using osu.Game.Rulesets.Osu.OsuDifficulty.Preprocessing;
|
||||
|
||||
namespace osu.Game.Rulesets.Osu.OsuDifficulty.Skills
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents the skill required to correctly aim at every object in the map with a uniform CircleSize and normalized distances.
|
||||
/// </summary>
|
||||
public class Aim : Skill
|
||||
{
|
||||
protected override double SkillMultiplier => 26.25;
|
||||
|
@ -3,6 +3,9 @@
|
||||
|
||||
using osu.Game.Rulesets.Osu.OsuDifficulty.Preprocessing;
|
||||
|
||||
/// <summary>
|
||||
/// Represents the skill required to press keys with regards to keeping up with the speed at which objects need to be hit.
|
||||
/// </summary>
|
||||
namespace osu.Game.Rulesets.Osu.OsuDifficulty.Skills
|
||||
{
|
||||
public class Speed : Skill
|
||||
|
@ -40,7 +40,7 @@ namespace osu.Game.Rulesets.Osu.OsuDifficulty.Utils
|
||||
{
|
||||
get
|
||||
{
|
||||
if (i > Count - 1)
|
||||
if (i < 0 || i > Count - 1)
|
||||
throw new IndexOutOfRangeException();
|
||||
|
||||
i += marker;
|
||||
|
Loading…
Reference in New Issue
Block a user