1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-21 05:09:57 +08:00

Make interfaces inherit other interfaces for now.

This commit is contained in:
smoogipooo
2017-03-15 12:30:31 +09:00
Unverified
parent 808f9fccca
commit 9fdeff3f9e
3 changed files with 3 additions and 3 deletions
+1 -1
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.
+1 -1
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.
+1 -1
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.