Combine RestartOnFail into FailOverride

This commit is contained in:
Paul Teng
2018-10-30 07:12:06 -04:00
parent 52b9a3f5e9
commit 007dfedbb7
7 changed files with 12 additions and 19 deletions

View File

@ -12,5 +12,10 @@ namespace osu.Game.Rulesets.Mods
/// Whether we should allow failing at the current point in time.
/// </summary>
bool AllowFail { get; }
/// <summary>
/// Whether we want to restart on fail. Only used if AllowFail is true.
/// </summary>
bool RestartOnFail { get; }
}
}