2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Objects.Legacy.Osu
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Legacy osu! Hit-type, used for parsing Beatmaps.
|
|
|
|
|
/// </summary>
|
2020-02-23 12:01:30 +08:00
|
|
|
|
internal sealed class ConvertHit : ConvertHitObject, IHasPosition, IHasCombo
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public Vector2 Position { get; set; }
|
|
|
|
|
|
|
|
|
|
public float X => Position.X;
|
|
|
|
|
|
|
|
|
|
public float Y => Position.Y;
|
|
|
|
|
|
|
|
|
|
public bool NewCombo { get; set; }
|
2018-05-11 14:31:36 +08:00
|
|
|
|
|
2018-08-15 10:47:31 +08:00
|
|
|
|
public int ComboOffset { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|