mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Expose playing user states as bindable dictionary
This commit is contained in:
@ -39,10 +39,10 @@ namespace osu.Game.Online.Spectator
|
||||
private readonly List<int> watchingUsers = new List<int>();
|
||||
|
||||
public IBindableList<int> PlayingUsers => playingUsers;
|
||||
|
||||
private readonly BindableList<int> playingUsers = new BindableList<int>();
|
||||
|
||||
private readonly Dictionary<int, SpectatorState> playingUserStates = new Dictionary<int, SpectatorState>();
|
||||
public IBindableDictionary<int, SpectatorState> PlayingUserStates => playingUserStates;
|
||||
private readonly BindableDictionary<int, SpectatorState> playingUserStates = new BindableDictionary<int, SpectatorState>();
|
||||
|
||||
private IBeatmap? currentBeatmap;
|
||||
|
||||
|
Reference in New Issue
Block a user