1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-17 23:32:55 +08:00
osu-lazer/osu.Game/GameModes/Play/Taiko/TaikoHitRenderer.cs

20 lines
721 B
C#
Raw Normal View History

2016-09-02 18:50:22 +08:00
//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.Framework.Graphics;
using osu.Game.Beatmaps.Objects;
using osu.Game.Beatmaps.Objects.Taiko;
using osu.Game.Beatmaps.Objects.Taiko.Drawable;
2016-09-02 18:50:22 +08:00
namespace osu.Game.GameModes.Play.Taiko
{
public class TaikoHitRenderer : HitRenderer<TaikoBaseHit>
2016-09-02 18:50:22 +08:00
{
2016-10-14 17:48:07 +08:00
protected override HitObjectConverter<TaikoBaseHit> Converter => new TaikoConverter();
2016-09-02 18:50:22 +08:00
protected override Playfield CreatePlayfield() => new TaikoPlayfield();
2016-09-02 18:50:22 +08:00
protected override Drawable GetVisualRepresentation(TaikoBaseHit h) => new DrawableTaikoHit(h);
2016-09-02 18:50:22 +08:00
}
}