mirror of
https://github.com/ppy/osu.git
synced 2025-02-16 13:02:55 +08:00
19 lines
555 B
C#
19 lines
555 B
C#
|
// 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;
|
||
|
using OpenTK;
|
||
|
|
||
|
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>
|
||
|
Vector2 TimeSpan { get; }
|
||
|
}
|
||
|
}
|