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