// 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 IApplicableRestartOnFail : IApplicableMod { /// /// Whether we allow restarting /// bool AllowRestart { get; } } }