2017-02-07 12:59:30 +08:00
|
|
|
|
// 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 19:30:27 +08:00
|
|
|
|
|
2016-11-14 17:54:24 +08:00
|
|
|
|
using osu.Game.Modes.Catch.Objects;
|
2016-11-14 17:03:20 +08:00
|
|
|
|
using osu.Game.Modes.Objects;
|
2016-11-14 18:49:29 +08:00
|
|
|
|
using osu.Game.Modes.Objects.Drawables;
|
2016-11-14 17:54:24 +08:00
|
|
|
|
using osu.Game.Modes.UI;
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
2016-11-14 17:54:24 +08:00
|
|
|
|
namespace osu.Game.Modes.Catch.UI
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
2016-10-13 09:10:15 +08:00
|
|
|
|
public class CatchHitRenderer : HitRenderer<CatchBaseHit>
|
2016-09-02 19:30:27 +08:00
|
|
|
|
{
|
2016-10-14 17:48:07 +08:00
|
|
|
|
protected override HitObjectConverter<CatchBaseHit> Converter => new CatchConverter();
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
2017-03-06 12:59:11 +08:00
|
|
|
|
protected override Playfield<CatchBaseHit> CreatePlayfield() => new CatchPlayfield();
|
2016-09-02 19:30:27 +08:00
|
|
|
|
|
2017-03-06 12:59:11 +08:00
|
|
|
|
protected override DrawableHitObject<CatchBaseHit> GetVisualRepresentation(CatchBaseHit h) => null;// new DrawableFruit(h);
|
2016-09-02 19:30:27 +08:00
|
|
|
|
}
|
|
|
|
|
}
|