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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
704 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 09:19:50 +00:00
using System;
2017-06-12 09:56:07 +00:00
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Localisation;
2018-04-13 09:19:50 +00:00
2017-06-12 09:56:07 +00:00
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;
2018-04-13 09:19:50 +00:00
public OsuMenuItem(LocalisableString text, MenuItemType type = MenuItemType.Standard)
: this(text, type, null)
2017-06-12 09:56:07 +00:00
{
}
2018-04-13 09:19:50 +00:00
public OsuMenuItem(LocalisableString 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
}
}
2018-01-05 11:21:19 +00:00
}