1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 16:07:31 +08:00
osu-lazer/osu.Game/Graphics/Cursor/OsuContextMenuContainer.cs

14 lines
472 B
C#
Raw Normal View History

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
}
}