// WingsEmu // // Developed by NosWings Team namespace WingsEmu.Packets.ClientPackets { [PacketHeader("walk")] public class WalkPacket : ClientPacket { #region Properties [PacketIndex(0)] public short XCoordinate { get; set; } [PacketIndex(1)] public short YCoordinate { get; set; } [PacketIndex(2)] public short Unknown { get; set; } [PacketIndex(3)] public short Speed { get; set; } #endregion } }