mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 09:17:52 +08:00
24 lines
590 B
C#
24 lines
590 B
C#
// 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.
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Rulesets.Edit;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Skinning.Editor
|
|
{
|
|
internal class SkinSettingsToolbox : ScrollingToolboxGroup
|
|
{
|
|
public const float WIDTH = 200;
|
|
|
|
public SkinSettingsToolbox()
|
|
: base("Settings", 600)
|
|
{
|
|
RelativeSizeAxes = Axes.None;
|
|
Width = WIDTH;
|
|
|
|
FillFlow.Spacing = new Vector2(10);
|
|
}
|
|
}
|
|
}
|