1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-19 13:02:55 +08:00
osu-lazer/osu.Game/Screens/Edit/Components/Timelines/Summary/Visualisations/PointVisualisation.cs

28 lines
790 B
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-09-26 14:55:55 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using OpenTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Shapes;
namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Visualisations
{
/// <summary>
2017-09-26 14:51:45 +08:00
/// Represents a singular point on a timeline part.
/// </summary>
public class PointVisualisation : Box
{
protected PointVisualisation(double startTime)
{
Origin = Anchor.TopCentre;
RelativeSizeAxes = Axes.Y;
Width = 1;
EdgeSmoothness = new Vector2(1, 0);
RelativePositionAxes = Axes.X;
X = (float)startTime;
}
}
}