2018-01-05 19:21:19 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-05-15 12:26:35 +08:00
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
namespace osu.Game.Online.Chat
|
|
|
|
{
|
2017-09-22 21:30:07 +08:00
|
|
|
public class ErrorMessage : InfoMessage
|
2017-05-15 12:26:35 +08:00
|
|
|
{
|
2017-09-22 21:30:07 +08:00
|
|
|
public ErrorMessage(string message) : base(message)
|
2017-05-15 12:26:35 +08:00
|
|
|
{
|
2017-09-22 21:30:07 +08:00
|
|
|
Sender.Colour = @"ff0000";
|
2017-05-15 12:26:35 +08:00
|
|
|
}
|
|
|
|
}
|
2017-09-22 21:30:07 +08:00
|
|
|
}
|