osu/osu.Game/Rulesets/Objects/Legacy/Mania/ConvertHit.cs

18 lines
531 B
C#
Raw Normal View History

2017-03-14 04:02:42 +00:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-04-18 07:05:58 +00:00
using osu.Game.Rulesets.Objects.Types;
2017-04-18 07:05:58 +00:00
namespace osu.Game.Rulesets.Objects.Legacy.Mania
{
/// <summary>
2017-04-18 00:13:36 +00:00
/// Legacy osu!mania Hit-type, used for parsing Beatmaps.
/// </summary>
internal sealed class ConvertHit : HitObject, IHasXPosition, IHasCombo
{
public float X { get; set; }
public bool NewCombo { get; set; }
}
}