1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 19:47:19 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Edit/OsuDistanceSnapGrid.cs

19 lines
629 B
C#
Raw Normal View History

2019-10-11 17:13:28 +09: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 JetBrains.Annotations;
2019-10-11 17:13:28 +09:00
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 17:13:28 +09:00
{
public OsuDistanceSnapGrid(OsuHitObject hitObject, [CanBeNull] OsuHitObject nextHitObject = null)
: base(hitObject.StackedPosition, hitObject.StartTime, nextHitObject?.StartTime)
2019-10-11 17:13:28 +09:00
{
2019-10-16 20:05:25 +09:00
Masking = true;
2019-10-11 17:13:28 +09:00
}
}
}