osu/osu.Game/Graphics/Cursor/OsuContextMenuContainer.cs

14 lines
472 B
C#
Raw Normal View History

2017-06-12 09:56:07 +00: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 05:42:52 +00:00
public class OsuContextMenuContainer : ContextMenuContainer
2017-06-12 09:56:07 +00:00
{
2017-08-28 05:42:52 +00:00
protected override Menu CreateMenu() => new OsuContextMenu();
2017-06-12 09:56:07 +00:00
}
}