mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
20 lines
688 B
C#
20 lines
688 B
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
{
|
|
public abstract class ModPerfect : ModSuddenDeath
|
|
{
|
|
public override string Name => "Perfect";
|
|
public override string Acronym => "PF";
|
|
public override IconUsage Icon => OsuIcon.ModPerfect;
|
|
public override string Description => "SS or quit.";
|
|
|
|
protected override bool FailCondition(ScoreProcessor scoreProcessor) => scoreProcessor.Accuracy.Value != 1;
|
|
}
|
|
}
|