mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:17:23 +08:00
19 lines
671 B
C#
19 lines
671 B
C#
// Copyright (c) 2007-2018 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.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
{
|
|
public abstract class ModPerfect : ModSuddenDeath
|
|
{
|
|
public override string Name => "Perfect";
|
|
public override string ShortenedName => "PF";
|
|
public override FontAwesome Icon => FontAwesome.fa_osu_mod_perfect;
|
|
public override string Description => "SS or quit.";
|
|
|
|
protected override bool FailCondition(ScoreProcessor scoreProcessor) => scoreProcessor.Accuracy.Value != 1;
|
|
}
|
|
}
|