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

16 lines
258 B
C#
Raw Normal View History

2014-07-08 12:58:53 +00:00
using ProtoBuf;
namespace Core.Packets.ServerPackets
{
[ProtoContract]
public class Drives : IPacket
{
public Drives() { }
public void Execute(Client client)
{
client.Send<Drives>(this);
}
}
}