2017-06-12 17:56:07 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.Cursor
|
|
|
|
|
{
|
2017-08-28 13:42:52 +08:00
|
|
|
|
public class OsuContextMenuContainer : ContextMenuContainer
|
2017-06-12 17:56:07 +08:00
|
|
|
|
{
|
2017-08-28 13:42:52 +08:00
|
|
|
|
protected override Menu CreateMenu() => new OsuContextMenu();
|
2017-06-12 17:56:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|