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

16 lines
258 B
C#

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