1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 18:53:51 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/OsuContextMenuItem.cs

25 lines
705 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 System;
2017-06-12 17:56:07 +08:00
using osu.Framework.Graphics.UserInterface;
namespace osu.Game.Graphics.UserInterface
{
public class OsuContextMenuItem : MenuItem
2017-06-12 17:56:07 +08:00
{
public readonly MenuItemType Type;
2017-06-12 17:56:07 +08:00
public OsuContextMenuItem(string text, MenuItemType type = MenuItemType.Standard)
: base(text)
2017-06-12 17:56:07 +08:00
{
Type = type;
2017-06-12 17:56:07 +08:00
}
public OsuContextMenuItem(string text, MenuItemType type, Action action)
: base(text, action)
2017-06-12 17:56:07 +08:00
{
Type = type;
2017-06-12 17:56:07 +08:00
}
}
}