1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 06:47:24 +08:00

Add missing readonly keyword to new bindable

This commit is contained in:
Dean Herbert 2021-08-16 17:14:13 +09:00
parent 8555a465ac
commit 1c7cbc8621

View File

@ -25,7 +25,7 @@ namespace osu.Game.Screens.Edit
/// The combo colours of this skin. /// The combo colours of this skin.
/// If empty, the default combo colours will be used. /// If empty, the default combo colours will be used.
/// </summary> /// </summary>
public BindableList<Colour4> ComboColours; public readonly BindableList<Colour4> ComboColours;
private readonly Skin skin; private readonly Skin skin;