1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 04:52:57 +08:00
osu-lazer/osu.Game/Rulesets/Timing/IHasTimeSpan.cs

18 lines
539 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;
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; }
}
}