osu.Game.Rulesets.HoLLy/osu.Game.Rulesets.HoLLy.Hex/HexDifficultyCalculator.cs

13 строки
469 B
C#
Исходник Постоянная ссылка Обычный вид История

using osu.Game.Beatmaps;
using osu.Game.Rulesets.Difficulty;
2018-05-11 00:04:12 +03:00
using osu.Game.Rulesets.Mods;
2018-03-13 21:22:45 +03:00
namespace osu.Game.Rulesets.HoLLy.Hex
{
internal class HexDifficultyCalculator : DifficultyCalculator
{
public HexDifficultyCalculator(Ruleset ruleset, WorkingBeatmap beatmap) : base(ruleset, beatmap) { }
protected override DifficultyAttributes Calculate(IBeatmap beatmap, Mod[] mods, double timeRate) => new DifficultyAttributes(mods, 5.0);
2018-03-13 21:22:45 +03:00
}
}