2016-11-09 18:49:05 +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 System.Collections.Generic;
|
|
|
|
|
using osu.Game.Beatmaps.Objects;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Game.Screens.Play.Osu;
|
2016-11-09 18:49:05 +08:00
|
|
|
|
|
2016-11-14 16:23:33 +08:00
|
|
|
|
namespace osu.Game.Screens.Play.Catch
|
2016-11-09 18:49:05 +08:00
|
|
|
|
{
|
|
|
|
|
class CatchRuleset : Ruleset
|
|
|
|
|
{
|
|
|
|
|
public override ScoreOverlay CreateScoreOverlay() => new ScoreOverlayOsu();
|
|
|
|
|
|
|
|
|
|
public override HitRenderer CreateHitRendererWith(List<HitObject> objects) => new CatchHitRenderer { Objects = objects };
|
|
|
|
|
}
|
|
|
|
|
}
|