2019-01-24 17:43:03 +09:00
|
|
|
|
// 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-04-13 18:19:50 +09:00
|
|
|
|
|
2021-11-04 18:02:44 +09:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.Chat
|
|
|
|
|
{
|
2018-08-03 20:02:12 +09:00
|
|
|
|
public class InfoMessage : LocalMessage
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2019-02-28 13:31:40 +09:00
|
|
|
|
public InfoMessage(string message)
|
2021-04-22 14:51:57 +09:00
|
|
|
|
: base(null)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
|
|
|
|
Content = message;
|
|
|
|
|
|
2021-11-04 18:02:44 +09:00
|
|
|
|
Sender = APIUser.SYSTEM_USER;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|