2016-09-02 11:30:27 +00:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2016-11-14 09:54:24 +00:00
|
|
|
|
using osu.Game.Modes.Catch.Objects;
|
2016-11-14 09:03:20 +00:00
|
|
|
|
using osu.Game.Modes.Objects;
|
2016-11-14 10:49:29 +00:00
|
|
|
|
using osu.Game.Modes.Objects.Drawables;
|
2016-11-14 09:54:24 +00:00
|
|
|
|
using osu.Game.Modes.UI;
|
2016-09-02 11:30:27 +00:00
|
|
|
|
|
2016-11-14 09:54:24 +00:00
|
|
|
|
namespace osu.Game.Modes.Catch.UI
|
2016-09-02 11:30:27 +00:00
|
|
|
|
{
|
2016-10-13 01:10:15 +00:00
|
|
|
|
public class CatchHitRenderer : HitRenderer<CatchBaseHit>
|
2016-09-02 11:30:27 +00:00
|
|
|
|
{
|
2016-10-14 09:48:07 +00:00
|
|
|
|
protected override HitObjectConverter<CatchBaseHit> Converter => new CatchConverter();
|
2016-09-02 11:30:27 +00:00
|
|
|
|
|
2016-10-13 13:14:18 +00:00
|
|
|
|
protected override Playfield CreatePlayfield() => new CatchPlayfield();
|
2016-09-02 11:30:27 +00:00
|
|
|
|
|
2016-10-19 10:44:03 +00:00
|
|
|
|
protected override DrawableHitObject GetVisualRepresentation(CatchBaseHit h) => null;// new DrawableFruit(h);
|
2016-09-02 11:30:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|