1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:07:25 +08:00
osu-lazer/osu.Game/Graphics/UserInterface/OsuMenuItem.cs

25 lines
684 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
{
2017-08-28 13:42:52 +08:00
public class OsuMenuItem : MenuItem
2017-06-12 17:56:07 +08:00
{
public readonly MenuItemType Type;
2017-06-12 17:56:07 +08:00
2017-08-28 13:42:52 +08:00
public OsuMenuItem(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
}
2017-08-28 13:42:52 +08:00
public OsuMenuItem(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
}
}
}