2019-01-24 16:43:03 +08:00
|
|
|
|
// 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
|
|
|
|
|
2017-08-25 14:10:12 +08:00
|
|
|
|
using System;
|
2017-06-12 17:56:07 +08:00
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
2022-01-28 12:53:48 +08:00
|
|
|
|
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
|
|
|
|
{
|
2017-08-25 14:10:12 +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)
|
2019-11-07 15:04:13 +08:00
|
|
|
|
: this(text, type, null)
|
2017-06-12 17:56:07 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-01-28 12:53:48 +08:00
|
|
|
|
public OsuMenuItem(LocalisableString text, MenuItemType type, Action action)
|
2017-08-25 14:10:12 +08:00
|
|
|
|
: base(text, action)
|
2017-06-12 17:56:07 +08:00
|
|
|
|
{
|
2017-08-25 14:10:12 +08:00
|
|
|
|
Type = type;
|
2017-06-12 17:56:07 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-05 19:21:19 +08:00
|
|
|
|
}
|