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:
parent
81b8898272
commit
53b58910c3
@ -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
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user