mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:57:24 +08:00
24 lines
693 B
C#
24 lines
693 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.Game.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Screens.Edit.Components.Menus
|
|
{
|
|
public class EditorMenuItem : OsuMenuItem
|
|
{
|
|
private const int min_text_length = 40;
|
|
|
|
public EditorMenuItem(string text, MenuItemType type = MenuItemType.Standard)
|
|
: base(text.PadRight(min_text_length), type)
|
|
{
|
|
}
|
|
|
|
public EditorMenuItem(string text, MenuItemType type, Action action)
|
|
: base(text.PadRight(min_text_length), type, action)
|
|
{
|
|
}
|
|
}
|
|
}
|