2017-03-14 17:46:34 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using OpenTK;
|
2017-04-18 15:05:58 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2017-03-14 17:46:34 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Objects.Legacy
|
2017-03-14 17:46:34 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Legacy Hold-type, used for parsing "specials" in beatmaps.
|
|
|
|
|
/// </summary>
|
2017-04-22 20:33:11 +08:00
|
|
|
|
internal sealed class ConvertHold : HitObject, IHasPosition, IHasCombo, IHasHold
|
2017-03-14 17:46:34 +08:00
|
|
|
|
{
|
|
|
|
|
public Vector2 Position { get; set; }
|
|
|
|
|
|
2017-04-17 16:23:11 +08:00
|
|
|
|
public float X => Position.X;
|
|
|
|
|
|
|
|
|
|
public float Y => Position.Y;
|
|
|
|
|
|
2017-03-14 17:46:34 +08:00
|
|
|
|
public bool NewCombo { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|