Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ppy
GitHub Repository: ppy/osu
Path: blob/master/osu.Game/Screens/Edit/Components/Menus/EditorMenuItem.cs
4579 views
// Copyright (c) ppy Pty Ltd <[email protected]>. 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)
        {
        }
    }
}