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

14 lines
292 B
C#

using System;
namespace MafiaCommon.Packets
{
public class ServerShutdownPacket : Packet
{
public readonly String Reason;
public ServerShutdownPacket(String reason) : base(PacketType.ServerShutdown)
{
Reason = reason;
}
}
}