Move scrolling info to osu.Game

This commit is contained in:
smoogipoo
2018-11-06 13:58:38 +09:00
parent 7f0f143a1b
commit 9fde7f7f44
6 changed files with 2 additions and 6 deletions

View File

@ -0,0 +1,16 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Configuration;
using osu.Game.Rulesets.Objects;
namespace osu.Game.Rulesets.UI.Scrolling
{
public interface IScrollingInfo
{
/// <summary>
/// The direction <see cref="HitObject"/>s should scroll in.
/// </summary>
IBindable<ScrollingDirection> Direction { get; }
}
}