mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 18:07:28 +08:00
16 lines
507 B
C#
16 lines
507 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
|
|
namespace osu.Game.Rulesets.Osu.OsuDifficulty.Skills
|
|
{
|
|
public class Aim : Skill
|
|
{
|
|
protected override double SkillMultiplier => 26.25;
|
|
protected override double StrainDecayBase => 0.15;
|
|
|
|
protected override double StrainValue() => Math.Pow(Current.Distance, 0.99) / Current.DeltaTime;
|
|
}
|
|
}
|