Add LocalMessage

This commit is contained in:
Dean Herbert
2018-08-03 20:02:12 +09:00
parent 4c57e629ff
commit b4ef3dd4dd
4 changed files with 19 additions and 3 deletions

View File

@ -0,0 +1,16 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Online.Chat
{
/// <summary>
/// A message which is generated and displayed locally.
/// </summary>
public class LocalMessage : Message
{
protected LocalMessage(long? id)
: base(id)
{
}
}
}