// WingsEmu // // Developed by NosWings Team namespace WingsEmu.Packets.ClientPackets { [PacketHeader("rd")] public class RdPacket : ClientPacket { #region Properties [PacketIndex(0)] public short Type { get; set; } [PacketIndex(1)] public long CharacterId { get; set; } [PacketIndex(2)] public short? Parameter { get; set; } #endregion } }