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