Invert interface definition

This commit is contained in:
smoogipoo 2020-06-01 14:27:39 +09:00
parent 81b8898272
commit 53b58910c3
1 changed files with 4 additions and 2 deletions

View File

@ -9,12 +9,14 @@ namespace osu.Game.Rulesets.Objects.Types
/// <summary>
/// A HitObject that has a curve.
/// </summary>
public interface IHasPathWithRepeats : IHasPath, IHasRepeats
#pragma warning disable 618
public interface IHasPathWithRepeats : IHasCurve
#pragma warning restore 618
{
}
[Obsolete("Use IHasPathWithRepeats instead.")] // can be removed 20201126
public interface IHasCurve : IHasPathWithRepeats
public interface IHasCurve : IHasPath, IHasRepeats
{
}