2018-01-05 11:21:19 +00:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-19 16:41:51 +00:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using osu.Game.Beatmaps;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Catch.Beatmaps;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
2017-02-19 16:41:51 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Catch
|
2017-02-19 16:41:51 +00:00
|
|
|
|
{
|
2017-11-28 09:37:41 +00:00
|
|
|
|
public class CatchDifficultyCalculator : DifficultyCalculator<CatchHitObject>
|
2017-02-19 16:41:51 +00:00
|
|
|
|
{
|
|
|
|
|
public CatchDifficultyCalculator(Beatmap beatmap) : base(beatmap)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-21 10:54:53 +00:00
|
|
|
|
public override double Calculate(Dictionary<string, double> categoryDifficulty = null) => 0;
|
2017-03-12 05:32:50 +00:00
|
|
|
|
|
2017-11-28 09:37:41 +00:00
|
|
|
|
protected override BeatmapConverter<CatchHitObject> CreateBeatmapConverter(Beatmap beatmap) => new CatchBeatmapConverter();
|
2017-02-19 16:41:51 +00:00
|
|
|
|
}
|
2017-11-16 11:06:32 +00:00
|
|
|
|
}
|