using System; using Filter.Handlers.Instances; namespace Filter.Handlers.Zone { internal class ZonePacketHandler : PacketHandlerAttribute { public ZonePacketHandler(Byte Header, Byte Type) : base(Header, Type) { } public ZonePacketHandler(Zone2TypeServer Type) : this(2, Convert.ToByte(Type)) { } public ZonePacketHandler(Zone6TypeClient Type) : this(6, Convert.ToByte(Type)) { } public ZonePacketHandler(Zone8TypeClient Type) : this(8, Convert.ToByte(Type)) { } public ZonePacketHandler(Zone12TypeClient Type) : this(12, Convert.ToByte(Type)) { } public ZonePacketHandler(Zone26TypeClient Type) : this(26, Convert.ToByte(Type)) { } } }