// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Graphics.UserInterface; namespace osu.Framework.Graphics.Cursor { public interface IHasContextMenu : IDrawable { /// /// Menu items that appear when the drawable is right-clicked. /// /// /// If empty, this will be picked as the menu target but a context menu will not be shown. /// If null, this will not be picked as the menu target and other s underneath may become the menu target. /// MenuItem[] ContextMenuItems { get; } } }