18 lines
No EOL
453 B
C#
18 lines
No EOL
453 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
using WingsEmu.Packets.Enums;
|
|
|
|
namespace WingsEmu.Packets.ClientPackets
|
|
{
|
|
[PacketHeader("multi_target_list_sub_packet")] // header will be ignored for serializing just sub list packets
|
|
public class MultiTargetListSubPacket : ClientPacket
|
|
{
|
|
[PacketIndex(0)]
|
|
public VisualType TargetType { get; set; }
|
|
|
|
[PacketIndex(1)]
|
|
public int TargetId { get; set; }
|
|
}
|
|
} |