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