1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 18:32:55 +08:00
osu-lazer/osu.Game/Screens/Play/Taiko/TaikoHitRenderer.cs
2016-11-14 17:23:33 +09:00

18 lines
656 B
C#

//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.Taiko;
namespace osu.Game.Screens.Play.Taiko
{
public class TaikoHitRenderer : HitRenderer<TaikoBaseHit>
{
protected override HitObjectConverter<TaikoBaseHit> Converter => new TaikoConverter();
protected override Playfield CreatePlayfield() => new TaikoPlayfield();
protected override DrawableHitObject GetVisualRepresentation(TaikoBaseHit h) => null;// new DrawableTaikoHit(h);
}
}