1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 05:07:21 +08:00
osu-lazer/osu.Game/Rulesets/Edit/EditorToolboxGroup.cs

19 lines
481 B
C#
Raw Normal View History

2023-06-23 01:37:25 +09: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 18:19:50 +09:00
using osu.Framework.Graphics;
using osu.Game.Overlays;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Rulesets.Edit
{
2022-11-24 14:32:20 +09:00
public partial class EditorToolboxGroup : SettingsToolboxGroup
2018-04-13 18:19:50 +09:00
{
public EditorToolboxGroup(string title)
2020-09-09 19:14:28 +09:00
: base(title)
2018-04-13 18:19:50 +09:00
{
RelativeSizeAxes = Axes.X;
Width = 1;
}
}
}