1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 20:37:19 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
648 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;
using osu.Framework.Localisation;
using osu.Game.Graphics.UserInterface;
2018-04-13 18:19:50 +09:00
2018-11-06 18:28:22 +09:00
namespace osu.Game.Screens.Edit.Components.Menus
{
public class EditorMenuItem : OsuMenuItem
{
public EditorMenuItem(LocalisableString text, MenuItemType type = MenuItemType.Standard)
: base(text, type)
{
}
2018-04-13 18:19:50 +09:00
public EditorMenuItem(LocalisableString text, MenuItemType type, Action action)
: base(text, type, action)
{
}
}
}