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

18 lines
No EOL
426 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Packets.Enums;
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("sit_sub_packet")] // header will be ignored for serializing just sub list packets
public class SitSubPacket : ClientPacket
{
[PacketIndex(0)]
public VisualType VisualType { get; set; }
[PacketIndex(1)]
public long UserId { get; set; }
}
}