mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 22:27:39 +08:00
25 lines
631 B
C#
25 lines
631 B
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using osu.Game.Users;
|
|
|
|
namespace osu.Game.Online.Chat
|
|
{
|
|
public class ErrorMessage : Message
|
|
{
|
|
private static int errorId = -1;
|
|
|
|
public ErrorMessage(string message) : base(errorId--)
|
|
{
|
|
Timestamp = DateTimeOffset.Now;
|
|
Content = message;
|
|
|
|
Sender = new User
|
|
{
|
|
Username = @"system",
|
|
Colour = @"ff0000",
|
|
};
|
|
}
|
|
}
|
|
} |