2018-01-05 19:21:19 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-11-30 15:58:14 +08:00
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
2018-01-14 03:25:09 +08:00
|
|
|
using osu.Game.Screens.Play.PlayerSettings;
|
2017-11-30 15:58:14 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Edit
|
|
|
|
{
|
2018-01-16 01:52:52 +08:00
|
|
|
public class ToolboxGroup : PlayerSettingsGroup
|
2017-11-30 15:58:14 +08:00
|
|
|
{
|
|
|
|
protected override string Title => "toolbox";
|
|
|
|
|
|
|
|
public ToolboxGroup()
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
Width = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|