Quasar/Client/Core/Packets/ServerPackets/GetSystemInfo.cs

17 lines
302 B
C#

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