// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Graphics.Containers; namespace osu.Game.Rulesets.Timing { /// /// A type of container which spans a length of time. /// public interface IHasTimeSpan : IContainer { /// /// The amount of time which this container spans. /// double TimeSpan { get; } } }