1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 19:43:22 +08:00

Invert interface definition

This commit is contained in:
smoogipoo 2020-06-01 14:27:39 +09:00
parent 81b8898272
commit 53b58910c3

View File

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