1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 09:47:52 +08:00
osu-lazer/osu.Game/Modes/Catch/CatchHitRenderer.cs

18 lines
640 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
2016-11-14 17:03:20 +08:00
using osu.Game.Modes.Objects;
using osu.Game.Modes.Objects.Catch;
2016-11-14 17:03:20 +08:00
namespace osu.Game.Modes.Catch
{
public class CatchHitRenderer : HitRenderer<CatchBaseHit>
{
2016-10-14 17:48:07 +08:00
protected override HitObjectConverter<CatchBaseHit> Converter => new CatchConverter();
protected override Playfield CreatePlayfield() => new CatchPlayfield();
protected override DrawableHitObject GetVisualRepresentation(CatchBaseHit h) => null;// new DrawableFruit(h);
}
}