1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 02:57:24 +08:00
osu-lazer/osu.Game/Graphics/Cursor/OsuContextMenuContainer.cs

15 lines
474 B
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
2017-06-12 17:56:07 +08:00
// 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
}
2018-01-05 19:21:19 +08:00
}