osu/osu.Game/Beatmaps/ControlPoints/ControlPoint.cs

14 lines
390 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
namespace osu.Game.Beatmaps.ControlPoints
{
public class ControlPoint
{
2017-05-23 05:11:37 +00:00
/// <summary>
/// The time at which the control point takes effect.
/// </summary>
public double Time;
}
}