1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00
osu-lazer/osu.Game/Graphics/UserInterfaceV2/LabelledColourPalette.cs

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

30 lines
815 B
C#
Raw Normal View History

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