2021-04-19 01:29:04 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2021-04-19 01:29:04 +08:00
|
|
|
using osu.Framework.Bindables;
|
2021-06-21 01:37:09 +08:00
|
|
|
using osu.Framework.Graphics;
|
2021-04-19 01:29:04 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Graphics.UserInterfaceV2
|
|
|
|
{
|
|
|
|
public class LabelledColourPalette : LabelledDrawable<ColourPalette>
|
|
|
|
{
|
|
|
|
public LabelledColourPalette()
|
|
|
|
: base(true)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2021-06-21 01:37:09 +08:00
|
|
|
public BindableList<Colour4> Colours => Component.Colours;
|
2021-04-19 01:29:04 +08:00
|
|
|
|
2021-04-19 01:56:03 +08:00
|
|
|
public string ColourNamePrefix
|
|
|
|
{
|
|
|
|
get => Component.ColourNamePrefix;
|
|
|
|
set => Component.ColourNamePrefix = value;
|
|
|
|
}
|
|
|
|
|
2021-04-19 01:29:04 +08:00
|
|
|
protected override ColourPalette CreateComponent() => new ColourPalette();
|
|
|
|
}
|
|
|
|
}
|