osu/osu.Game/Graphics/UserInterface/OsuMenuItem.cs

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