2019-01-24 16:43:03 +08:00
|
|
|
// 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 17:19:50 +08:00
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
2022-01-06 20:10:45 +08:00
|
|
|
using osu.Game.Overlays;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Edit
|
|
|
|
{
|
2022-01-06 20:10:45 +08:00
|
|
|
public class EditorToolboxGroup : SettingsToolboxGroup
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2022-01-06 20:10:45 +08:00
|
|
|
public EditorToolboxGroup(string title)
|
2020-09-09 18:14:28 +08:00
|
|
|
: base(title)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
Width = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|