1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-16 13:02:55 +08:00
osu-lazer/osu.Game/Rulesets/Timing/IHasTimeSpan.cs

19 lines
555 B
C#
Raw Normal View History

// 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; }
}
}