mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 13:57:29 +08:00
23 lines
648 B
C#
23 lines
648 B
C#
// 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.
|
|
|
|
using System;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Screens.Edit.Components.Menus
|
|
{
|
|
public class EditorMenuItem : OsuMenuItem
|
|
{
|
|
public EditorMenuItem(LocalisableString text, MenuItemType type = MenuItemType.Standard)
|
|
: base(text, type)
|
|
{
|
|
}
|
|
|
|
public EditorMenuItem(LocalisableString text, MenuItemType type, Action action)
|
|
: base(text, type, action)
|
|
{
|
|
}
|
|
}
|
|
}
|