1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 10:07:25 +08:00
osu-lazer/osu.Game.Modes.Taiko/UI/TaikoHitRenderer.cs

27 lines
1007 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
2016-09-02 18:50:22 +08:00
using osu.Game.Beatmaps;
2016-11-14 18:49:29 +08:00
using osu.Game.Modes.Objects.Drawables;
using osu.Game.Modes.Taiko.Beatmaps;
using osu.Game.Modes.Taiko.Judgements;
2016-11-14 17:54:24 +08:00
using osu.Game.Modes.Taiko.Objects;
using osu.Game.Modes.UI;
2016-09-02 18:50:22 +08:00
2016-11-14 17:54:24 +08:00
namespace osu.Game.Modes.Taiko.UI
2016-09-02 18:50:22 +08:00
{
public class TaikoHitRenderer : HitRenderer<TaikoBaseHit, TaikoJudgementInfo>
2016-09-02 18:50:22 +08:00
{
public TaikoHitRenderer(WorkingBeatmap beatmap)
: base(beatmap)
{
}
protected override IBeatmapConverter<TaikoBaseHit> CreateBeatmapConverter() => new TaikoBeatmapConverter();
protected override Playfield<TaikoBaseHit, TaikoJudgementInfo> CreatePlayfield() => new TaikoPlayfield();
2016-09-02 18:50:22 +08:00
protected override DrawableHitObject<TaikoBaseHit, TaikoJudgementInfo> GetVisualRepresentation(TaikoBaseHit h) => null;// new DrawableTaikoHit(h);
2016-09-02 18:50:22 +08:00
}
}