mirror of
https://github.com/osukey/osukey.git
synced 2025-05-11 16:47:19 +09:00
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; }
|
|
}
|
|
} |