RMafia/MafiaCommon/Packets/MessageSendPacket.cs
2021-01-17 22:47:37 +03:00

14 lines
361 B
C#

namespace MafiaCommon.Packets
{
public class MessageSendPacket : Packet
{
public readonly ChatType ChatType;
public readonly string Text;
public MessageSendPacket(ChatType chatType, string text) : base(PacketType.MessageSendPacket)
{
ChatType = chatType;
Text = text;
}
}
}