1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 16:27:26 +08:00

Add inline comment explaining usage of RequiresChildrenUpdate override

This commit is contained in:
Dean Herbert 2021-10-29 11:57:54 +09:00
parent dc44734db2
commit f3811edb0b

View File

@ -22,6 +22,7 @@ namespace osu.Game.Online.Rooms
{
public readonly IBindable<PlaylistItem> SelectedItem = new Bindable<PlaylistItem>();
// Required to allow child components to update. Can potentially be replaced with a `CompositeComponent` class if or when we make one.
protected override bool RequiresChildrenUpdate => true;
[Resolved]