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

20 lines
No EOL
356 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("pcl")]
public class GetGiftPacket : ClientPacket
{
#region Properties
[PacketIndex(0)]
public byte Type { get; set; }
[PacketIndex(1)]
public int GiftId { get; set; }
#endregion
}
}