mirror of
https://github.com/ppy/osu.git
synced 2024-12-16 06:52:55 +08:00
Make interfaces inherit other interfaces for now.
This commit is contained in:
parent
808f9fccca
commit
9fdeff3f9e
@ -9,7 +9,7 @@ namespace osu.Game.Modes.Objects.Types
|
||||
/// <summary>
|
||||
/// A HitObject that has a curve.
|
||||
/// </summary>
|
||||
public interface IHasCurve
|
||||
public interface IHasCurve : IHasDistance
|
||||
{
|
||||
/// <summary>
|
||||
/// The control points that shape the curve.
|
||||
|
@ -6,7 +6,7 @@ namespace osu.Game.Modes.Objects.Types
|
||||
/// <summary>
|
||||
/// A HitObject that has a distance.
|
||||
/// </summary>
|
||||
public interface IHasDistance
|
||||
public interface IHasDistance : IHasEndTime
|
||||
{
|
||||
/// <summary>
|
||||
/// The distance of the HitObject.
|
||||
|
@ -6,7 +6,7 @@ namespace osu.Game.Modes.Objects.Types
|
||||
/// <summary>
|
||||
/// A HitObject that spans some length.
|
||||
/// </summary>
|
||||
public interface IHasRepeats
|
||||
public interface IHasRepeats : IHasEndTime
|
||||
{
|
||||
/// <summary>
|
||||
/// The amount of times the HitObject repeats.
|
||||
|
Loading…
Reference in New Issue
Block a user