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

16 lines
272 B
C#
Raw Normal View History

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