// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Game.Graphics; using osuTK.Graphics; namespace osu.Game.Online.Multiplayer.RoomStatuses { public class RoomStatusEnded : RoomStatus { public override string Message => @"Ended"; public override Color4 GetAppropriateColour(OsuColour colours) => colours.YellowDarker; } }