2017-06-02 19:17:44 +08:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Timing
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A type of container which spans a length of time.
|
|
|
|
/// </summary>
|
|
|
|
public interface IHasTimeSpan : IContainer
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The amount of time which this container spans.
|
|
|
|
/// </summary>
|
2017-06-07 17:42:30 +08:00
|
|
|
double TimeSpan { get; }
|
2017-06-02 19:17:44 +08:00
|
|
|
}
|
|
|
|
}
|