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

17 lines
281 B
C#

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