// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Graphics; using osu.Framework.Graphics.Cursor; namespace osu.Game.Graphics.Cursor { public interface IProvideLocalCursor : IDrawable { /// /// The cursor provided by this . /// CursorContainer LocalCursor { get; } /// /// Whether the cursor provided by this should be displayed. /// If this is false, a cursor occurring earlier in the draw hierarchy will be displayed instead. /// bool ProvidesUserCursor { get; } } }