15 lines
No EOL
302 B
C#
15 lines
No EOL
302 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace WingsEmu.Packets.ServerPackets.Titles
|
|
{
|
|
[PacketHeader("title")]
|
|
public class TitlePacket : ServerPacket
|
|
{
|
|
[PacketIndex(0)]
|
|
public List<TitleSubPacket> Titles { get; set; }
|
|
}
|
|
} |