using OpenTK; using osu.Framework.Graphics.Containers; namespace osu.Game.Rulesets.Mania.Timing { public interface IHasTimeSpan : IContainer { /// /// The amount of time which this container spans. Drawables can be relatively positioned to this value. /// Vector2 TimeSpan { get; } } }