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

16 lines
267 B
C#
Raw Normal View History

2014-07-08 12:58:53 +00:00
using ProtoBuf;
namespace Core.Packets.ServerPackets
{
[ProtoContract]
public class Reconnect : IPacket
{
public Reconnect() { }
public void Execute(Client client)
{
client.Send<Reconnect>(this);
}
}
}