1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-18 23:57:22 +08:00

Make Users an IList for more flexibility server-side

This commit is contained in:
Dean Herbert 2021-07-23 18:16:53 +09:00
parent 9d1e95caf0
commit 1c125eef12

View File

@ -39,7 +39,7 @@ namespace osu.Game.Online.Multiplayer
/// All users currently in this room.
/// </summary>
[Key(3)]
public List<MultiplayerRoomUser> Users { get; set; } = new List<MultiplayerRoomUser>();
public IList<MultiplayerRoomUser> Users { get; set; } = new List<MultiplayerRoomUser>();
/// <summary>
/// The host of this room, in control of changing room settings.