2019-01-24 16:43:03 +08:00
|
|
|
|
// 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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-08-07 20:19:05 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.Cursor
|
|
|
|
|
{
|
|
|
|
|
public class OsuContextMenuContainer : ContextMenuContainer
|
|
|
|
|
{
|
2021-08-07 20:19:05 +08:00
|
|
|
|
[Cached]
|
|
|
|
|
private OsuContextMenuSamples samples = new OsuContextMenuSamples();
|
|
|
|
|
|
|
|
|
|
public OsuContextMenuContainer()
|
|
|
|
|
{
|
|
|
|
|
AddInternal(samples);
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-06 19:59:26 +08:00
|
|
|
|
protected override Menu CreateMenu() => new OsuContextMenu(true);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|