mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Introduce IDrawableScrollingRuleset
for editor consumption
This commit is contained in:
16
osu.Game/Rulesets/UI/Scrolling/IDrawableScrollingRuleset.cs
Normal file
16
osu.Game/Rulesets/UI/Scrolling/IDrawableScrollingRuleset.cs
Normal file
@ -0,0 +1,16 @@
|
||||
// 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.
|
||||
|
||||
#nullable disable
|
||||
using osu.Game.Configuration;
|
||||
|
||||
namespace osu.Game.Rulesets.UI.Scrolling
|
||||
{
|
||||
/// <summary>
|
||||
/// An interface for scrolling-based <see cref="DrawableRuleset{TObject}"/>s.
|
||||
/// </summary>
|
||||
public interface IDrawableScrollingRuleset
|
||||
{
|
||||
ScrollVisualisationMethod VisualisationMethod { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user