mirror of
https://github.com/ppy/osu.git
synced 2025-02-13 23:12:56 +08:00
22 lines
806 B
C#
22 lines
806 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System.Collections.Generic;
|
|
using osu.Game.Rulesets.Difficulty.Preprocessing;
|
|
using osu.Game.Rulesets.Taiko.Difficulty.Preprocessing.Colour;
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Difficulty.Preprocessing
|
|
{
|
|
public static class TaikoDifficultyPreprocessor
|
|
{
|
|
/// <summary>
|
|
/// Does preprocessing on a list of <see cref="TaikoDifficultyHitObject"/>s.
|
|
/// </summary>
|
|
public static List<DifficultyHitObject> Process(List<DifficultyHitObject> difficultyHitObjects)
|
|
{
|
|
TaikoColourDifficultyPreprocessor.ProcessAndAssign(difficultyHitObjects);
|
|
return difficultyHitObjects;
|
|
}
|
|
}
|
|
}
|