2022-01-14 15:29:26 +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.
|
|
|
|
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Components.Timelines.Summary.Parts
|
|
|
|
{
|
2022-01-15 22:56:00 +08:00
|
|
|
public interface IControlPointVisualisation
|
2022-01-14 15:29:26 +08:00
|
|
|
{
|
2022-01-15 22:55:11 +08:00
|
|
|
/// <summary>
|
|
|
|
/// For display purposes, check whether the proposed point is made redundant by this visualisation.
|
|
|
|
/// </summary>
|
|
|
|
bool IsVisuallyRedundant(ControlPoint other);
|
2022-01-14 15:29:26 +08:00
|
|
|
}
|
|
|
|
}
|