osu/osu.Game.Modes.Taiko/UI/TaikoHitRenderer.cs

31 lines
1.2 KiB
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 10:50:22 +00:00
using osu.Game.Beatmaps;
2016-11-14 10:49:29 +00:00
using osu.Game.Modes.Objects.Drawables;
using osu.Game.Modes.Taiko.Beatmaps;
using osu.Game.Modes.Taiko.Judgements;
2016-11-14 09:54:24 +00:00
using osu.Game.Modes.Taiko.Objects;
using osu.Game.Modes.UI;
2016-09-02 10:50:22 +00:00
2016-11-14 09:54:24 +00:00
namespace osu.Game.Modes.Taiko.UI
2016-09-02 10:50:22 +00:00
{
public class TaikoHitRenderer : HitRenderer<TaikoBaseHit, TaikoJudgementInfo>
2016-09-02 10:50:22 +00:00
{
public TaikoHitRenderer(WorkingBeatmap beatmap)
: base(beatmap)
{
}
public override ScoreProcessor CreateScoreProcessor() => new TaikoScoreProcessor(this);
protected override IBeatmapConverter<TaikoBaseHit> CreateBeatmapConverter() => new TaikoBeatmapConverter();
protected override IBeatmapProcessor<TaikoBaseHit> CreateBeatmapProcessor() => new TaikoBeatmapProcessor();
2016-09-02 10:50:22 +00:00
protected override Playfield<TaikoBaseHit, TaikoJudgementInfo> CreatePlayfield() => new TaikoPlayfield();
2016-09-02 10:50:22 +00:00
2017-03-15 12:53:01 +00:00
protected override DrawableHitObject<TaikoBaseHit, TaikoJudgementInfo> GetVisualRepresentation(TaikoBaseHit h) => null;
2016-09-02 10:50:22 +00:00
}
}