2016-09-02 18:25:13 +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.Osu;
|
2016-10-13 09:10:15 +08:00
|
|
|
|
using osu.Game.Beatmaps.Objects.Osu.Drawable;
|
2016-09-02 18:25:13 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.GameModes.Play.Osu
|
|
|
|
|
{
|
2016-10-13 09:10:15 +08:00
|
|
|
|
public class OsuHitRenderer : HitRenderer<OsuBaseHit>
|
2016-09-02 18:25:13 +08:00
|
|
|
|
{
|
2016-10-13 21:55:49 +08:00
|
|
|
|
protected override HitObjectConverter<OsuBaseHit> Converter { get; } = new OsuConverter();
|
2016-09-02 18:25:13 +08:00
|
|
|
|
|
2016-10-13 21:14:18 +08:00
|
|
|
|
protected override Playfield CreatePlayfield() => new OsuPlayfield();
|
2016-10-10 16:17:26 +08:00
|
|
|
|
|
2016-10-13 09:10:15 +08:00
|
|
|
|
protected override Drawable GetVisualRepresentation(OsuBaseHit h) => new DrawableCircle(h);
|
2016-09-02 18:25:13 +08:00
|
|
|
|
}
|
|
|
|
|
}
|