1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 15:02:52 +08:00
osu-lazer/osu.Game/Screens/Edit/Menus/EditorMenuItemSpacer.cs

14 lines
358 B
C#
Raw Normal View History

2018-01-05 19:21:19 +08:00
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Screens.Edit.Menus
{
2017-09-07 22:06:35 +08:00
public class EditorMenuItemSpacer : EditorMenuItem
{
2017-09-07 22:06:35 +08:00
public EditorMenuItemSpacer()
: base(" ")
{
}
}
}