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:
parent
f37444938f
commit
338d94626e
@ -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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user