mirror of
https://github.com/osukey/osukey.git
synced 2025-05-15 02:27:33 +09:00
24 lines
936 B
C#
24 lines
936 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.Modes.Objects;
|
|
using osu.Game.Modes.Objects.Drawables;
|
|
using osu.Game.Modes.Osu.Objects;
|
|
using osu.Game.Modes.UI;
|
|
using DrawableCircle = osu.Game.Modes.Osu.Objects.Drawables.DrawableCircle;
|
|
using OsuBaseHit = osu.Game.Modes.Osu.Objects.OsuBaseHit;
|
|
using OsuConverter = osu.Game.Modes.Osu.Objects.OsuConverter;
|
|
|
|
namespace osu.Game.Modes.Osu.UI
|
|
{
|
|
public class OsuHitRenderer : HitRenderer<OsuBaseHit>
|
|
{
|
|
protected override HitObjectConverter<OsuBaseHit> Converter => new OsuConverter();
|
|
|
|
protected override Playfield CreatePlayfield() => new OsuPlayfield();
|
|
|
|
protected override DrawableHitObject GetVisualRepresentation(OsuBaseHit h)
|
|
=> h is HitCircle ? new DrawableCircle(h as HitCircle) : null;
|
|
}
|
|
}
|