mirror of
https://github.com/ppy/osu.git
synced 2025-02-11 18:32:56 +08:00
17 lines
372 B
C#
17 lines
372 B
C#
using osu.Game.Beatmaps;
|
|
using osu.Game.Modes.Catch.Objects;
|
|
|
|
namespace osu.Game.Modes.Catch.Beatmaps
|
|
{
|
|
internal class CatchBeatmapProcessor : IBeatmapProcessor<CatchBaseHit>
|
|
{
|
|
public void PostProcess(Beatmap<CatchBaseHit> beatmap)
|
|
{
|
|
}
|
|
|
|
public void SetDefaults(CatchBaseHit hitObject)
|
|
{
|
|
}
|
|
}
|
|
}
|