1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 03:57:46 +08:00

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 18:19:50 +09:00
using System;
2017-06-12 12:56:07 +03:00
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Localisation;
2018-04-13 18:19:50 +09:00
2017-06-12 12:56:07 +03:00
namespace osu.Game.Graphics.UserInterface
{
2017-08-28 14:42:52 +09:00
public class OsuMenuItem : MenuItem
2017-06-12 12:56:07 +03:00
{
public readonly MenuItemType Type;
2018-04-13 18:19:50 +09:00
public OsuMenuItem(LocalisableString text, MenuItemType type = MenuItemType.Standard)
: this(text, type, null)
2017-06-12 12:56:07 +03:00
{
}
2018-04-13 18:19:50 +09:00
public OsuMenuItem(LocalisableString text, MenuItemType type, Action? action)
: base(text, action)
2017-06-12 12:56:07 +03:00
{
Type = type;
2017-06-12 12:56:07 +03:00
}
}
2018-01-05 20:21:19 +09:00
}