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