osu/osu.Game/Screens/Play/Catch/CatchHitRenderer.cs

18 lines
653 B
C#
Raw Normal View History

//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Game.Beatmaps.Objects;
using osu.Game.Beatmaps.Objects.Catch;
2016-11-14 08:23:33 +00:00
namespace osu.Game.Screens.Play.Catch
{
public class CatchHitRenderer : HitRenderer<CatchBaseHit>
{
2016-10-14 09:48:07 +00:00
protected override HitObjectConverter<CatchBaseHit> Converter => new CatchConverter();
protected override Playfield CreatePlayfield() => new CatchPlayfield();
protected override DrawableHitObject GetVisualRepresentation(CatchBaseHit h) => null;// new DrawableFruit(h);
}
}