1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 12:07:27 +08:00
osu-lazer/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
692 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 17:19:50 +08:00
using System;
2017-06-12 17:56:07 +08:00
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Localisation;
2018-04-13 17:19:50 +08:00
2017-06-12 17:56:07 +08:00
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;
2018-04-13 17:19:50 +08:00
2017-08-28 13:42:52 +08:00
public OsuMenuItem(string text, MenuItemType type = MenuItemType.Standard)
: this(text, type, null)
2017-06-12 17:56:07 +08:00
{
}
2018-04-13 17:19:50 +08:00
public OsuMenuItem(LocalisableString 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
}
}
2018-01-05 19:21:19 +08:00
}