mirror of
https://github.com/ppy/osu.git
synced 2025-01-21 07:33:12 +08:00
a4cd409835
Also includes commenting improvements/fixes.
13 lines
363 B
C#
13 lines
363 B
C#
using OpenTK;
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Timing
|
|
{
|
|
public interface IHasTimeSpan : IContainer
|
|
{
|
|
/// <summary>
|
|
/// The amount of time which this container spans. Drawables can be relatively positioned to this value.
|
|
/// </summary>
|
|
Vector2 TimeSpan { get; }
|
|
}
|
|
} |