Highlight spotlight rooms with a different colour

This commit is contained in:
Dean Herbert
2020-07-10 19:37:27 +09:00
parent cf3251a950
commit 64e8dce1ad
5 changed files with 30 additions and 5 deletions

View File

@ -34,7 +34,8 @@ namespace osu.Game.Tests.Visual.Multiplayer
RoomID = { Value = i },
Name = { Value = $"Room {i}" },
Host = { Value = new User { Username = "Host" } },
EndDate = { Value = DateTimeOffset.Now + TimeSpan.FromSeconds(10) }
EndDate = { Value = DateTimeOffset.Now + TimeSpan.FromSeconds(10) },
Category = { Value = i % 2 == 0 ? RoomCategory.Spotlight : RoomCategory.Normal }
};
if (ruleset != null)