osu/osu.Game.Rulesets.Osu/Edit/OsuDistanceSnapGrid.cs

18 lines
520 B
C#
Raw Normal View History

2019-10-11 08:13:28 +00: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.
using osu.Game.Rulesets.Osu.Objects;
using osu.Game.Screens.Edit.Compose.Components;
namespace osu.Game.Rulesets.Osu.Edit
{
public class OsuDistanceSnapGrid : CircularDistanceSnapGrid
2019-10-11 08:13:28 +00:00
{
public OsuDistanceSnapGrid(OsuHitObject hitObject)
2019-10-11 08:13:28 +00:00
: base(hitObject, hitObject.StackedEndPosition)
{
2019-10-16 11:05:25 +00:00
Masking = true;
2019-10-11 08:13:28 +00:00
}
}
}