mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:37:51 +08:00
30 lines
1.1 KiB
C#
30 lines
1.1 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Modes.Mania.UI;
|
|
using osu.Game.Modes.Objects;
|
|
using osu.Game.Modes.Osu.UI;
|
|
using osu.Game.Modes.UI;
|
|
using osu.Game.Beatmaps;
|
|
|
|
namespace osu.Game.Modes.Mania
|
|
{
|
|
public class ManiaRuleset : Ruleset
|
|
{
|
|
public override ScoreOverlay CreateScoreOverlay() => new OsuScoreOverlay();
|
|
|
|
public override HitRenderer CreateHitRendererWith(Beatmap beatmap) => new ManiaHitRenderer { Beatmap = beatmap };
|
|
|
|
protected override PlayMode PlayMode => PlayMode.Mania;
|
|
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mania_o;
|
|
|
|
public override ScoreProcessor CreateScoreProcessor(int hitObjectCount) => null;
|
|
|
|
public override HitObjectParser CreateHitObjectParser() => new NullHitObjectParser();
|
|
|
|
public override DifficultyCalculator CreateDifficultyCalculator(Beatmap beatmap) => new ManiaDifficultyCalculator(beatmap);
|
|
}
|
|
}
|