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;
|
2016-11-14 17:54:24 +08:00
|
|
|
|
using osu.Game.Modes.Mania.UI;
|
2016-11-14 17:03:20 +08:00
|
|
|
|
using osu.Game.Modes.Objects;
|
|
|
|
|
using osu.Game.Modes.Osu;
|
2016-11-14 21:03:39 +08:00
|
|
|
|
using osu.Game.Modes.Osu.Objects;
|
2016-11-14 17:54:24 +08:00
|
|
|
|
using osu.Game.Modes.Osu.UI;
|
|
|
|
|
using osu.Game.Modes.UI;
|
2016-11-09 18:49:05 +08:00
|
|
|
|
|
2016-11-14 17:03:20 +08:00
|
|
|
|
namespace osu.Game.Modes.Mania
|
2016-11-09 18:49:05 +08:00
|
|
|
|
{
|
2016-11-14 21:03:39 +08:00
|
|
|
|
public class ManiaRuleset : Ruleset
|
2016-11-09 18:49:05 +08:00
|
|
|
|
{
|
2016-11-14 18:20:21 +08:00
|
|
|
|
public override ScoreOverlay CreateScoreOverlay() => new OsuScoreOverlay();
|
2016-11-09 18:49:05 +08:00
|
|
|
|
|
|
|
|
|
public override HitRenderer CreateHitRendererWith(List<HitObject> objects) => new ManiaHitRenderer { Objects = objects };
|
2016-11-14 21:03:39 +08:00
|
|
|
|
|
2016-11-14 22:13:47 +08:00
|
|
|
|
protected override PlayMode PlayMode => PlayMode.Mania;
|
|
|
|
|
|
2016-11-14 21:03:39 +08:00
|
|
|
|
public override HitObjectParser CreateHitObjectParser() => new OsuHitObjectParser();
|
2016-11-09 18:49:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|