server-master/srcs/WingsAPI.Packets/ClientPackets/AddobjPacket.cs
2026-02-10 18:21:30 +01:00

23 lines
No EOL
435 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("addobj")]
public class AddobjPacket : ClientPacket
{
#region Properties
[PacketIndex(0)]
public short Slot { get; set; }
[PacketIndex(1)]
public short PositionX { get; set; }
[PacketIndex(2)]
public short PositionY { get; set; }
#endregion
}
}