mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
Make Users
an IList
for more flexibility server-side
This commit is contained in:
@ -39,7 +39,7 @@ namespace osu.Game.Online.Multiplayer
|
|||||||
/// All users currently in this room.
|
/// All users currently in this room.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Key(3)]
|
[Key(3)]
|
||||||
public List<MultiplayerRoomUser> Users { get; set; } = new List<MultiplayerRoomUser>();
|
public IList<MultiplayerRoomUser> Users { get; set; } = new List<MultiplayerRoomUser>();
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The host of this room, in control of changing room settings.
|
/// The host of this room, in control of changing room settings.
|
||||||
|
Reference in New Issue
Block a user