osu/osu.Game/Online/Rooms/RoomStatuses/RoomStatusOpen.cs

15 lines
462 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-12-27 04:30:36 +00:00
using osu.Game.Graphics;
using osuTK.Graphics;
2020-12-25 04:38:11 +00:00
namespace osu.Game.Online.Rooms.RoomStatuses
2018-12-27 04:30:36 +00:00
{
public class RoomStatusOpen : RoomStatus
{
public override string Message => @"Welcoming Players";
public override Color4 GetAppropriateColour(OsuColour colours) => colours.GreenLight;
}
}