1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 11:22:54 +08:00

Expose underlying skin of EditorBeatmapSkin

This commit is contained in:
Salman Ahmed 2022-04-18 06:42:06 +03:00
parent f37444938f
commit 338d94626e

View File

@ -21,13 +21,18 @@ namespace osu.Game.Screens.Edit
{
public event Action BeatmapSkinChanged;
/// <summary>
/// The underlying beatmap skin.
/// </summary>
protected internal ISkin Skin => skin;
private readonly Skin skin;
/// <summary>
/// The combo colours of this skin.
/// If empty, the default combo colours will be used.
/// </summary>
public readonly BindableList<Colour4> ComboColours;
private readonly Skin skin;
public BindableList<Colour4> ComboColours { get; }
public EditorBeatmapSkin(Skin skin)
{