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

17 lines
277 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()
{
}
2014-07-08 05:58:53 -07:00
public void Execute(Client client)
{
client.Send(this);
2014-07-08 05:58:53 -07:00
}
}
}