osu/osu.Game/Graphics/UserInterfaceV2/LabelledColourPalette.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
799 B
C#
Raw Normal View History

2021-04-18 17:29:04 +00: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.
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Localisation;
2021-04-18 17:29:04 +00:00
namespace osu.Game.Graphics.UserInterfaceV2
{
public partial class LabelledColourPalette : LabelledDrawable<ColourPalette>
{
public LabelledColourPalette()
: base(true)
{
}
public BindableList<Colour4> Colours => Component.Colours;
2021-04-18 17:29:04 +00:00
public LocalisableString ColourNamePrefix
2021-04-18 17:56:03 +00:00
{
get => Component.ColourNamePrefix;
set => Component.ColourNamePrefix = value;
}
2021-04-18 17:29:04 +00:00
protected override ColourPalette CreateComponent() => new ColourPalette();
}
}