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

16 lines
266 B
C#
Raw Normal View History

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