osu/osu.Game.Modes.Catch/UI/CatchHitRenderer.cs

26 lines
904 B
C#
Raw Normal View History

// 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.Catch.Beatmaps;
2016-11-14 09:54:24 +00:00
using osu.Game.Modes.Catch.Objects;
2016-11-14 10:49:29 +00:00
using osu.Game.Modes.Objects.Drawables;
2016-11-14 09:54:24 +00:00
using osu.Game.Modes.UI;
2016-11-14 09:54:24 +00:00
namespace osu.Game.Modes.Catch.UI
{
public class CatchHitRenderer : HitRenderer<CatchBaseHit>
{
public CatchHitRenderer(WorkingBeatmap beatmap)
: base(beatmap)
{
}
protected override IBeatmapConverter<CatchBaseHit> CreateBeatmapConverter() => new CatchBeatmapConverter();
2017-03-06 04:59:11 +00:00
protected override Playfield<CatchBaseHit> CreatePlayfield() => new CatchPlayfield();
2017-03-06 04:59:11 +00:00
protected override DrawableHitObject<CatchBaseHit> GetVisualRepresentation(CatchBaseHit h) => null;// new DrawableFruit(h);
}
}