1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +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>
/// A HitObject that has a curve.
/// </summary>
public interface IHasCurve
public interface IHasCurve : IHasDistance
{
/// <summary>
/// The control points that shape the curve.

View File

@ -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.

View File

@ -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.