// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Game.Beatmaps; using osu.Game.Modes.Catch.Objects; using osu.Game.Modes.Objects; using System; using System.Collections.Generic; namespace osu.Game.Modes.Catch { public class CatchDifficultyCalculator : DifficultyCalculator { protected override PlayMode PlayMode => PlayMode.Catch; public CatchDifficultyCalculator(Beatmap beatmap) : base(beatmap) { } protected override HitObjectConverter Converter => new CatchConverter(); protected override double CalculateInternal(Dictionary categoryDifficulty) { return 0; } } }