1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 03:02:53 +08:00

Fix up distance -> positional length comments.

This commit is contained in:
smoogipooo 2017-03-15 12:59:19 +09:00
parent 41f912836a
commit ae7547bbda

View File

@ -4,12 +4,12 @@
namespace osu.Game.Modes.Objects.Types
{
/// <summary>
/// A HitObject that has a distance.
/// A HitObject that has a positional length.
/// </summary>
public interface IHasDistance : IHasEndTime
{
/// <summary>
/// The distance of the HitObject.
/// The positional length of the HitObject.
/// </summary>
double Distance { get; }
}