// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE namespace osu.Game.Rulesets.Mods { /// /// Represents a mod which can override (and block) a fail. /// public interface IApplicableFailOverride : IApplicableMod { /// /// Whether we should allow failing at the current point in time. /// bool AllowFail { get; } } }