// 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 { /// /// Interface for s that display cursors which can replace the user's cursor. /// public interface IProvideCursor : IDrawable { /// /// The cursor provided by this . /// May be null if no cursor should be visible. /// CursorContainer Cursor { get; } /// /// Whether the cursor provided by this should be displayed as the user's cursor. /// bool ProvidesUserCursor { get; } } }