mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 10:47:24 +08:00
26 lines
900 B
C#
26 lines
900 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Modes.Objects.Drawables;
|
|
using osu.Game.Modes.Taiko.Beatmaps;
|
|
using osu.Game.Modes.Taiko.Objects;
|
|
using osu.Game.Modes.UI;
|
|
|
|
namespace osu.Game.Modes.Taiko.UI
|
|
{
|
|
public class TaikoHitRenderer : HitRenderer<TaikoBaseHit>
|
|
{
|
|
public TaikoHitRenderer(Beatmap beatmap)
|
|
: base(beatmap)
|
|
{
|
|
}
|
|
|
|
protected override IBeatmapConverter<TaikoBaseHit> CreateBeatmapConverter() => new TaikoBeatmapConverter();
|
|
|
|
protected override Playfield<TaikoBaseHit> CreatePlayfield() => new TaikoPlayfield();
|
|
|
|
protected override DrawableHitObject<TaikoBaseHit> GetVisualRepresentation(TaikoBaseHit h) => null;// new DrawableTaikoHit(h);
|
|
}
|
|
}
|