2017-03-14 08:07:38 +00: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-03-14 08:01:21 +00:00
|
|
|
|
using osu.Game.Modes.Mania.Objects;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Modes.Mania.Beatmaps
|
|
|
|
|
{
|
|
|
|
|
internal class ManiaBeatmapProcessor : IBeatmapProcessor<ManiaBaseHit>
|
|
|
|
|
{
|
2017-03-14 10:04:40 +00:00
|
|
|
|
public void SetDefaults(ManiaBaseHit hitObject, Beatmap<ManiaBaseHit> beatmap)
|
2017-03-14 08:01:21 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-14 10:04:40 +00:00
|
|
|
|
public void PostProcess(Beatmap<ManiaBaseHit> beatmap)
|
2017-03-14 08:01:21 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|