mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 04:17:24 +08:00
24 lines
714 B
C#
24 lines
714 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 osu.Game.Beatmaps;
|
|
using osu.Game.Modes.Taiko.Objects;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace osu.Game.Modes.Taiko
|
|
{
|
|
public class TaikoDifficultyCalculator : DifficultyCalculator<TaikoBaseHit>
|
|
{
|
|
protected override PlayMode PlayMode => PlayMode.Taiko;
|
|
|
|
public TaikoDifficultyCalculator(Beatmap beatmap) : base(beatmap)
|
|
{
|
|
}
|
|
|
|
protected override double CalculateInternal(Dictionary<String, String> categoryDifficulty)
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
} |