mirror of
https://github.com/ppy/osu.git
synced 2025-03-02 03:42:57 +08:00
15 lines
462 B
C#
15 lines
462 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Game.Graphics;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Online.Multiplayer.RoomStatuses
|
|
{
|
|
public class RoomStatusPlaying : RoomStatus
|
|
{
|
|
public override string Message => @"Now Playing";
|
|
public override Color4 GetAppropriateColour(OsuColour colours) => colours.Purple;
|
|
}
|
|
}
|