mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
Invert interface definition
This commit is contained in:
@ -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
|
||||
{
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user