1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-24 20:25:36 +08:00

Implement IHasFailCondition interface

This commit is contained in:
Peter-io 2024-07-11 20:20:34 +02:00
parent 527e14351e
commit 0a8d90953d

View File

@ -0,0 +1,15 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. 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
{
/// <summary>
/// Interface for a <see cref="Mod"/> with fail condition
/// </summary>
public interface IHasFailCondition
{
bool FailCondition(JudgementResult result);
}
}