1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 16:27:26 +08:00

Make interfaces inherit other interfaces for now.

This commit is contained in:
smoogipooo 2017-03-15 12:30:31 +09:00
parent 808f9fccca
commit 9fdeff3f9e
3 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ namespace osu.Game.Modes.Objects.Types
/// <summary> /// <summary>
/// A HitObject that has a curve. /// A HitObject that has a curve.
/// </summary> /// </summary>
public interface IHasCurve public interface IHasCurve : IHasDistance
{ {
/// <summary> /// <summary>
/// The control points that shape the curve. /// The control points that shape the curve.

View File

@ -6,7 +6,7 @@ namespace osu.Game.Modes.Objects.Types
/// <summary> /// <summary>
/// A HitObject that has a distance. /// A HitObject that has a distance.
/// </summary> /// </summary>
public interface IHasDistance public interface IHasDistance : IHasEndTime
{ {
/// <summary> /// <summary>
/// The distance of the HitObject. /// The distance of the HitObject.

View File

@ -6,7 +6,7 @@ namespace osu.Game.Modes.Objects.Types
/// <summary> /// <summary>
/// A HitObject that spans some length. /// A HitObject that spans some length.
/// </summary> /// </summary>
public interface IHasRepeats public interface IHasRepeats : IHasEndTime
{ {
/// <summary> /// <summary>
/// The amount of times the HitObject repeats. /// The amount of times the HitObject repeats.