diff --git a/osu.Game/Rulesets/Mods/IHasFailCondition.cs b/osu.Game/Rulesets/Mods/IHasFailCondition.cs new file mode 100644 index 0000000000..92b3f93215 --- /dev/null +++ b/osu.Game/Rulesets/Mods/IHasFailCondition.cs @@ -0,0 +1,15 @@ +// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. +// See the LICENCE file in the repository root for full licence text. + +using osu.Game.Rulesets.Judgements; + +namespace osu.Game.Rulesets.Mods +{ + /// + /// Interface for a with fail condition + /// + public interface IHasFailCondition + { + bool FailCondition(JudgementResult result); + } +}